diff options
author | Abyss777 <abyss@fox5.ru> | 2016-07-15 15:04:25 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-07-15 15:04:25 +0500 |
commit | 1f411961db56f7024d3e88cfaef89f1ab26fc9f1 (patch) | |
tree | 0fb4178f4e892c0005fade85c4cee01275334225 /web/app/GeofenceConverter.js | |
parent | 2db5a3df91a76776cc214eca1e1fda6aecd0f36d (diff) | |
download | trackermap-server-1f411961db56f7024d3e88cfaef89f1ab26fc9f1.tar.gz trackermap-server-1f411961db56f7024d3e88cfaef89f1ab26fc9f1.tar.bz2 trackermap-server-1f411961db56f7024d3e88cfaef89f1ab26fc9f1.zip |
Fix geofences not showed in old browsers and IE
Diffstat (limited to 'web/app/GeofenceConverter.js')
-rw-r--r-- | web/app/GeofenceConverter.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/GeofenceConverter.js b/web/app/GeofenceConverter.js index ebe121385..339f09615 100644 --- a/web/app/GeofenceConverter.js +++ b/web/app/GeofenceConverter.js @@ -20,7 +20,7 @@ Ext.define('Traccar.GeofenceConverter', { wktToGeometry: function (mapView, wkt) { var geometry, projection, resolutionAtEquator, pointResolution, resolutionFactor, points = [], center, radius, content, i, lat, lon, coordinates; - if (wkt.startsWith('POLYGON')) { + if (wkt.lastIndexOf('POLYGON', 0) === 0) { content = wkt.match(/\([^\(\)]+\)/); if (content !== null) { coordinates = content[0].match(/-?\d+\.?\d*/g); @@ -34,7 +34,7 @@ Ext.define('Traccar.GeofenceConverter', { geometry = new ol.geom.Polygon([points]); } } - } else if (wkt.startsWith('CIRCLE')) { + } else if (wkt.lastIndexOf('CIRCLE', 0) === 0) { content = wkt.match(/\([^\(\)]+\)/); if (content !== null) { coordinates = content[0].match(/-?\d+\.?\d*/g); |