diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-07-05 00:48:06 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-05 00:48:06 +1200 |
commit | bcc20a915c61d7a86fd19b03ec1ab55ac5cf8527 (patch) | |
tree | 6e6a7fdbc462eae8858f6da0f5ebc68c0225d078 /web/app/view/GeofenceMap.js | |
parent | c8735de4c31037f16b5f68420bff2d2f6419bae5 (diff) | |
parent | dc8db55c8a74d26644d9dc449b4f35c76a2e031f (diff) | |
download | trackermap-server-bcc20a915c61d7a86fd19b03ec1ab55ac5cf8527.tar.gz trackermap-server-bcc20a915c61d7a86fd19b03ec1ab55ac5cf8527.tar.bz2 trackermap-server-bcc20a915c61d7a86fd19b03ec1ab55ac5cf8527.zip |
Merge pull request #2077 from Abyss777/master
Load area for editing geofence
Diffstat (limited to 'web/app/view/GeofenceMap.js')
-rw-r--r-- | web/app/view/GeofenceMap.js | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/web/app/view/GeofenceMap.js b/web/app/view/GeofenceMap.js index e8a4dc5de..165daf40d 100644 --- a/web/app/view/GeofenceMap.js +++ b/web/app/view/GeofenceMap.js @@ -19,7 +19,8 @@ Ext.define('Traccar.view.GeofenceMap', { xtype: 'geofenceMapView', requires: [ - 'Traccar.view.GeofenceMapController' + 'Traccar.view.GeofenceMapController', + 'Traccar.GeofenceConverter' ], controller: 'geofenceMap', @@ -50,12 +51,21 @@ Ext.define('Traccar.view.GeofenceMap', { }, initMap: function () { - var map, featureOverlay; + var map, featureOverlay, geometry; this.callParent(); map = this.map; this.features = new ol.Collection(); + if (this.area !== "") { + geometry = Traccar.GeofenceConverter.wktToGeometry(this.mapView, this.area); + this.features.push(new ol.Feature(geometry)); + if (geometry instanceof ol.geom.Circle) { + this.mapView.setCenter(geometry.getCenter()); + } else if (geometry instanceof ol.geom.Polygon) { + this.mapView.setCenter(geometry.getCoordinates()[0][0]); + } + } featureOverlay = new ol.layer.Vector({ source: new ol.source.Vector({ features: this.features |