aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/GeofenceMap.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-12-29 14:02:35 +0500
committerAbyss777 <abyss@fox5.ru>2016-12-29 14:02:35 +0500
commit1b8b172eaaab2aa738f45e39e3ca86a42d494bdd (patch)
treea2e4c3af788eebc033be2de809ae84012bd9fcc3 /web/app/view/GeofenceMap.js
parent4b83eba6511c6333a3cefaef59055db7e7764e3d (diff)
downloadetbsa-traccar-web-1b8b172eaaab2aa738f45e39e3ca86a42d494bdd.tar.gz
etbsa-traccar-web-1b8b172eaaab2aa738f45e39e3ca86a42d494bdd.tar.bz2
etbsa-traccar-web-1b8b172eaaab2aa738f45e39e3ca86a42d494bdd.zip
Add support for geofence colors
Diffstat (limited to 'web/app/view/GeofenceMap.js')
-rw-r--r--web/app/view/GeofenceMap.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/web/app/view/GeofenceMap.js b/web/app/view/GeofenceMap.js
index ad21f70..0a56b33 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,