diff options
author | Abyss777 <abyss@fox5.ru> | 2016-10-07 13:45:58 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-10-07 13:45:58 +0500 |
commit | e042dbc8f28faa005019744abf0d8c80340902bf (patch) | |
tree | 01b214a58aad95653abcd143afdf2b7bf2f0d7a5 /web/app/view/MapController.js | |
parent | a47bf8f3eb6807c4fc9094f6e1e6b62185354b2c (diff) | |
download | trackermap-web-e042dbc8f28faa005019744abf0d8c80340902bf.tar.gz trackermap-web-e042dbc8f28faa005019744abf0d8c80340902bf.tar.bz2 trackermap-web-e042dbc8f28faa005019744abf0d8c80340902bf.zip |
- Draw trip route on click
- Add some object class checks
- Add missed imports
Diffstat (limited to 'web/app/view/MapController.js')
-rw-r--r-- | web/app/view/MapController.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/web/app/view/MapController.js b/web/app/view/MapController.js index ac2188ef..59fd285e 100644 --- a/web/app/view/MapController.js +++ b/web/app/view/MapController.js @@ -19,6 +19,11 @@ Ext.define('Traccar.view.MapController', { extend: 'Ext.app.ViewController', alias: 'controller.map', + requires: [ + 'Traccar.model.Position', + 'Traccar.model.Device' + ], + config: { listen: { controller: { @@ -294,7 +299,9 @@ Ext.define('Traccar.view.MapController', { }, selectReport: function (position, center) { - this.selectMarker(this.reportMarkers[position.get('id')], center); + if (position instanceof Traccar.model.Position) { + this.selectMarker(this.reportMarkers[position.get('id')], center); + } }, selectFeature: function (feature) { |