diff options
author | Abyss777 <abyss@fox5.ru> | 2016-12-29 16:31:11 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-12-29 16:31:11 +0500 |
commit | d9be85d9928a9c511335a3a2eb231dcfd1fb1d5a (patch) | |
tree | 990756691ce721cc865918b983c20a96ce4c5561 /web/app/view/MapMarkerController.js | |
parent | 3362bc6315a7711b40649ee3a07fbfc8b0ff4ef8 (diff) | |
download | trackermap-web-d9be85d9928a9c511335a3a2eb231dcfd1fb1d5a.tar.gz trackermap-web-d9be85d9928a9c511335a3a2eb231dcfd1fb1d5a.tar.bz2 trackermap-web-d9be85d9928a9c511335a3a2eb231dcfd1fb1d5a.zip |
Deselect markers
Diffstat (limited to 'web/app/view/MapMarkerController.js')
-rw-r--r-- | web/app/view/MapMarkerController.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/web/app/view/MapMarkerController.js b/web/app/view/MapMarkerController.js index f8f0e43f..e4e3979e 100644 --- a/web/app/view/MapMarkerController.js +++ b/web/app/view/MapMarkerController.js @@ -52,7 +52,8 @@ Ext.define('Traccar.view.MapMarkerController', { }, component: { '#': { - selectfeature: 'selectFeature' + selectfeature: 'selectFeature', + deselectfeature: 'deselectFeature' } } } @@ -379,5 +380,10 @@ Ext.define('Traccar.view.MapMarkerController', { this.fireEvent('selectreport', record, false); } } + }, + + deselectFeature: function () { + this.selectMarker(null, false); + this.fireEvent('deselectfeature'); } }); |