aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/map/Map.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/view/map/Map.js')
-rw-r--r--web/app/view/map/Map.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/map/Map.js b/web/app/view/map/Map.js
index 449293e2f..bf1f1328b 100644
--- a/web/app/view/map/Map.js
+++ b/web/app/view/map/Map.js
@@ -38,7 +38,7 @@ Ext.define('Traccar.view.map.Map', {
source: this.vectorSource
});
- var view = new ol.View({
+ this.mapView = new ol.View({
center: ol.proj.fromLonLat(styles.map_center),
zoom: styles.map_zoom,
maxZoom: styles.map_max_zoom
@@ -47,7 +47,7 @@ Ext.define('Traccar.view.map.Map', {
this.map = new ol.Map({
target: this.body.dom.id,
layers: [ layer, vectorLayer ],
- view: view
+ view: this.mapView
});
},