diff options
author | Abyss777 <abyss@fox5.ru> | 2016-11-08 17:28:30 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-11-08 17:28:30 +0500 |
commit | 03c7abe38d7d4852e80630d9f3f2124387f65d2c (patch) | |
tree | 6864f4f447023a1f85ea969b394a7942a01f7949 /web/app/view | |
parent | dbd7cb8ca62dd7fbc62fbfb9ccc16fc4b8a08d64 (diff) | |
download | trackermap-web-03c7abe38d7d4852e80630d9f3f2124387f65d2c.tar.gz trackermap-web-03c7abe38d7d4852e80630d9f3f2124387f65d2c.tar.bz2 trackermap-web-03c7abe38d7d4852e80630d9f3f2124387f65d2c.zip |
- Make icon inner space transparent
- Use array of fillId
- Make default icon consistent with other
- Use bare arrow for route markers
Diffstat (limited to 'web/app/view')
-rw-r--r-- | web/app/view/MapController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/view/MapController.js b/web/app/view/MapController.js index 2f72e81c..a0e28671 100644 --- a/web/app/view/MapController.js +++ b/web/app/view/MapController.js @@ -305,7 +305,7 @@ Ext.define('Traccar.view.MapController', { if (deviceId !== undefined) { index = deviceId % Traccar.Style.mapRouteColor.length; } - return this.getMarkerStyle(false, Traccar.Style.mapRouteColor[index], angle); + return this.getMarkerStyle(false, Traccar.Style.mapRouteColor[index], angle, 'route'); }, resizeMarker: function (style, zoom) { |