diff options
author | Abyss777 <abyss@fox5.ru> | 2016-08-31 15:56:24 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-08-31 15:56:24 +0500 |
commit | e2c2a8151fddf9dae56400e58086b3014b7cb6b2 (patch) | |
tree | 55a97542fa2c5b2172e0ed5fdab1cb0e831d7098 /web/app/Style.js | |
parent | f8d0544edb04745afdd481eaf6424d8601784472 (diff) | |
download | trackermap-server-e2c2a8151fddf9dae56400e58086b3014b7cb6b2.tar.gz trackermap-server-e2c2a8151fddf9dae56400e58086b3014b7cb6b2.tar.bz2 trackermap-server-e2c2a8151fddf9dae56400e58086b3014b7cb6b2.zip |
Fix geofences colors and separate geofences styles
Diffstat (limited to 'web/app/Style.js')
-rw-r--r-- | web/app/Style.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/web/app/Style.js b/web/app/Style.js index d047fd96b..349f3d7eb 100644 --- a/web/app/Style.js +++ b/web/app/Style.js @@ -60,7 +60,6 @@ Ext.define('Traccar.Style', { mapColorOnline: 'rgba(77, 250, 144, 1.0)', mapColorUnknown: 'rgba(250, 190, 77, 1.0)', mapColorOffline: 'rgba(255, 84, 104, 1.0)', - mapColorOverlay: 'rgba(21, 127, 204, 0.2)', mapRadiusNormal: 9, mapRadiusSelected: 14, @@ -68,6 +67,11 @@ Ext.define('Traccar.Style', { mapMaxZoom: 19, mapDelay: 500, + mapGeofenceColor: 'rgba(21, 127, 204, 1.0)', + mapGeofenceOverlay: 'rgba(21, 127, 204, 0.2)', + mapGeofenceWidth: 5, + mapGeofenceRadius: 9, + coordinatePrecision: 6, numberPrecision: 2, |