diff options
author | Abyss777 <abyss@fox5.ru> | 2016-12-29 14:02:35 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-12-29 14:02:35 +0500 |
commit | 1b8b172eaaab2aa738f45e39e3ca86a42d494bdd (patch) | |
tree | a2e4c3af788eebc033be2de809ae84012bd9fcc3 /web/app/view/GeofenceMap.js | |
parent | 4b83eba6511c6333a3cefaef59055db7e7764e3d (diff) | |
download | trackermap-web-1b8b172eaaab2aa738f45e39e3ca86a42d494bdd.tar.gz trackermap-web-1b8b172eaaab2aa738f45e39e3ca86a42d494bdd.tar.bz2 trackermap-web-1b8b172eaaab2aa738f45e39e3ca86a42d494bdd.zip |
Add support for geofence colors
Diffstat (limited to 'web/app/view/GeofenceMap.js')
-rw-r--r-- | web/app/view/GeofenceMap.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/web/app/view/GeofenceMap.js b/web/app/view/GeofenceMap.js index ad21f70d..0a56b337 100644 --- a/web/app/view/GeofenceMap.js +++ b/web/app/view/GeofenceMap.js @@ -59,7 +59,7 @@ Ext.define('Traccar.view.GeofenceMap', { }, initMap: function () { - var map, featureOverlay, geometry; + var map, featureOverlay, geometry, fillColor; this.callParent(); map = this.map; @@ -74,13 +74,15 @@ Ext.define('Traccar.view.GeofenceMap', { this.mapView.setCenter(geometry.getCoordinates()[0][0]); } } + fillColor = ol.color.asArray(Traccar.Style.mapGeofenceColor); + fillColor[3] = Traccar.Style.mapGeofenceOverlayOpacity; featureOverlay = new ol.layer.Vector({ source: new ol.source.Vector({ features: this.features }), style: new ol.style.Style({ fill: new ol.style.Fill({ - color: Traccar.Style.mapGeofenceOverlay + color: fillColor }), stroke: new ol.style.Stroke({ color: Traccar.Style.mapGeofenceColor, |