WMTS getCapabilities readCoodinates more than one whitespace delimiter

combine split and replace
This commit is contained in:
MarquesDeAzevedo
2018-08-07 09:56:17 +02:00
committed by GitHub
parent 654073cd3d
commit 47c4e1a165

View File

@@ -340,7 +340,7 @@ function readLegendUrl(node, objectStack) {
* @return {Object|undefined} Coordinates object.
*/
function readCoordinates(node, objectStack) {
const coordinates = readString(node).replace(/\s\s+/g, ' ').split(' ');
const coordinates = readString(node).split(/\s+/g);
if (!coordinates || coordinates.length != 2) {
return undefined;
}