diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-20 22:32:29 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-20 22:32:29 +1300 |
commit | 5391eacb835bf34e4d085fb7b1a385dbd9bdcd5e (patch) | |
tree | 7c1564aae4e4a15de30a51975a6de8bd7ffa22e1 /web/app | |
parent | 28bdf02cc3e80d62a1fe49243e11d8ee3e9b0448 (diff) | |
download | trackermap-server-5391eacb835bf34e4d085fb7b1a385dbd9bdcd5e.tar.gz trackermap-server-5391eacb835bf34e4d085fb7b1a385dbd9bdcd5e.tar.bz2 trackermap-server-5391eacb835bf34e4d085fb7b1a385dbd9bdcd5e.zip |
Set icon to triangle with rotation
Diffstat (limited to 'web/app')
-rw-r--r-- | web/app/view/MapController.js | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/web/app/view/MapController.js b/web/app/view/MapController.js index 6e875fe3b..b53e46671 100644 --- a/web/app/view/MapController.js +++ b/web/app/view/MapController.js @@ -69,7 +69,7 @@ Ext.define('Traccar.view.MapController', { } else { var name = deviceStore.query('id', data[i].deviceId).first().get('name'); - var style = this.getMarkerStyle(Traccar.Style.mapLiveRadius, Traccar.Style.mapLiveColor, name); + var style = this.getMarkerStyle(Traccar.Style.mapLiveRadius, Traccar.Style.mapLiveColor, data[i].course, name); var marker = new ol.Feature({ geometry: geometry, originalStyle: style @@ -97,9 +97,10 @@ Ext.define('Traccar.view.MapController', { }); }, - getMarkerStyle: function (radius, color, text) { + getMarkerStyle: function (radius, color, rotation, text) { return new ol.style.Style({ - image: new ol.style.Circle({ + image: new ol.style.RegularShape({ + points: 3, radius: radius, fill: new ol.style.Fill({ color: color @@ -107,7 +108,8 @@ Ext.define('Traccar.view.MapController', { stroke: new ol.style.Stroke({ color: Traccar.Style.mapStrokeColor, width: Traccar.Style.mapMarkerStroke - }) + }), + rotation: rotation * Math.PI / 180 }), text: new ol.style.Text({ textBaseline: 'bottom', @@ -143,7 +145,7 @@ Ext.define('Traccar.view.MapController', { ]); positions.push(point); - var style = this.getMarkerStyle(Traccar.Style.mapReportRadius, Traccar.Style.mapReportColor); + var style = this.getMarkerStyle(Traccar.Style.mapReportRadius, Traccar.Style.mapReportColor, data.getAt(index).data.course); var feature = new ol.Feature({ geometry: new ol.geom.Point(positions[index]), originalStyle: style @@ -190,7 +192,7 @@ Ext.define('Traccar.view.MapController', { if (feature !== undefined) { var name = feature.getStyle().getText().getText(); - feature.setStyle(this.getMarkerStyle(Traccar.Style.mapSelectRadius, Traccar.Style.mapSelectColor, name)); + feature.setStyle(this.getMarkerStyle(Traccar.Style.mapSelectRadius, Traccar.Style.mapSelectColor, 0, name)); var pan = ol.animation.pan({ duration: Traccar.Style.mapDelay, |