[#429,map,bugfix][s]: parse negative lat/lon strings correctly - fixes #429.
This commit is contained in:
@@ -112,7 +112,10 @@ test('_getGeometryFromRecord non-GeoJSON', function () {
|
||||
[{ lon: 47, lat: 53}, [47,53]],
|
||||
[{ lon: -47, lat: 53}, [-47,53]],
|
||||
["53.3,47.32", [47.32, 53.3]],
|
||||
["53.3,-47.32", [-47.32, 53.3]],
|
||||
["53.3, 47.32", [47.32, 53.3]],
|
||||
["-53.3, 47.32", [47.32, -53.3]],
|
||||
["53.3, -47.32", [-47.32, 53.3]],
|
||||
["(53.3,47.32)", [47.32, 53.3]],
|
||||
[[53.3,47.32], [53.3, 47.32]],
|
||||
["53.3 N, 113.5 W", [-113.5, 53.3]],
|
||||
|
||||
Reference in New Issue
Block a user