Strings must have singlequotes

Strings must have singlequotes
This commit is contained in:
wussup
2020-01-15 10:29:14 +01:00
committed by GitHub
parent bc6f34d691
commit cbdd63a38b

View File

@@ -163,7 +163,7 @@ class GeoJSON extends JSONFeature {
if (crs['type'] == 'name') {
projection = getProjection(crs['properties']['name']);
} else if (crs['type'] === 'EPSG') {
projection = getProjection("EPSG:" + crs['properties']['code']);
projection = getProjection('EPSG:' + crs['properties']['code']);
} else {
assert(false, 36); // Unknown SRS type
}