aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/map/BaseMap.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-08-18 13:53:13 +0500
committerAbyss777 <abyss@fox5.ru>2017-08-18 13:53:13 +0500
commita2f24e445ef4c4c06a754b4538d51aec38e1dcbf (patch)
tree51b79ad695e27003119ad95ed354f66a55692277 /web/app/view/map/BaseMap.js
parentb3d3c720f34e12e7af83e6be3bd87e304931bbe1 (diff)
downloadetbsa-traccar-web-a2f24e445ef4c4c06a754b4538d51aec38e1dcbf.tar.gz
etbsa-traccar-web-a2f24e445ef4c4c06a754b4538d51aec38e1dcbf.tar.bz2
etbsa-traccar-web-a2f24e445ef4c4c06a754b4538d51aec38e1dcbf.zip
Update openlayers to 4.3.1
Diffstat (limited to 'web/app/view/map/BaseMap.js')
-rw-r--r--web/app/view/map/BaseMap.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/web/app/view/map/BaseMap.js b/web/app/view/map/BaseMap.js
index 5829cac..91f3784 100644
--- a/web/app/view/map/BaseMap.js
+++ b/web/app/view/map/BaseMap.js
@@ -182,14 +182,15 @@ Ext.define('Traccar.view.map.BaseMap', {
});
this.map.on('click', function (e) {
- if (this.map.hasFeatureAtPixel(e.pixel, {
+ var i, features = this.map.getFeaturesAtPixel(e.pixel, {
layerFilter: function (layer) {
return !layer.get('name');
}
- })) {
- this.map.forEachFeatureAtPixel(e.pixel, function (feature) {
- this.fireEvent('selectfeature', feature);
- }.bind(this));
+ });
+ if (features) {
+ for (i = 0; i < features.length; i++) {
+ this.fireEvent('selectfeature', features[i]);
+ }
} else {
this.fireEvent('deselectfeature');
}