aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-11-08 13:47:26 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2015-11-08 13:47:26 +1300
commitcdd83e0d13961c3465c7faf554ea8c709bd761b3 (patch)
tree8188ec2385a38a8939298aed526f87054be8c26a
parentea38e23c5c19f953d5db5107a56d697d31deef95 (diff)
downloadtraccar-server-cdd83e0d13961c3465c7faf554ea8c709bd761b3.tar.gz
traccar-server-cdd83e0d13961c3465c7faf554ea8c709bd761b3.tar.bz2
traccar-server-cdd83e0d13961c3465c7faf554ea8c709bd761b3.zip
Add map feature selection event
-rw-r--r--web/app/view/Map.js6
-rw-r--r--web/app/view/MapController.js9
2 files changed, 15 insertions, 0 deletions
diff --git a/web/app/view/Map.js b/web/app/view/Map.js
index 2c73f4cc5..b6c8cf815 100644
--- a/web/app/view/Map.js
+++ b/web/app/view/Map.js
@@ -95,6 +95,12 @@ Ext.define('Traccar.view.Map', {
layers: [layer, vectorLayer],
view: this.mapView
});
+
+ this.map.on("click", function(e) {
+ this.map.forEachFeatureAtPixel(e.pixel, function (feature, layer) {
+ this.fireEvent('selectFeature', feature);
+ }, this);
+ }, this);
},
resize: function () {
diff --git a/web/app/view/MapController.js b/web/app/view/MapController.js
index 205d40882..15bc24cdf 100644
--- a/web/app/view/MapController.js
+++ b/web/app/view/MapController.js
@@ -35,6 +35,11 @@ Ext.define('Traccar.view.MapController', {
load: 'loadReport',
clear: 'clearReport'
}
+ },
+ component: {
+ '#': {
+ selectFeature: 'selectFeature'
+ }
}
}
},
@@ -206,5 +211,9 @@ Ext.define('Traccar.view.MapController', {
selectReport: function (position) {
this.selectMarker(this.reportMarkers[position.get('id')]);
+ },
+
+ selectFeature: function (feature) {
+ console.log(feature);
}
});