diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-27 17:58:51 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-27 17:58:51 -0700 |
commit | 4f39902f1312b2927859161623e8eb9626b93340 (patch) | |
tree | 7be12523cdf625e85809d10cde0a21cebfb46232 /modern/src | |
parent | ee596c3a04762904d550430325f4ee1701c8da7d (diff) | |
download | trackermap-web-4f39902f1312b2927859161623e8eb9626b93340.tar.gz trackermap-web-4f39902f1312b2927859161623e8eb9626b93340.tar.bz2 trackermap-web-4f39902f1312b2927859161623e8eb9626b93340.zip |
Fix map re-rendering
Diffstat (limited to 'modern/src')
-rw-r--r-- | modern/src/map/core/Map.js | 2 | ||||
-rw-r--r-- | modern/src/map/switcher/switcher.js | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/modern/src/map/core/Map.js b/modern/src/map/core/Map.js index d6f48d5d..1e7fa76b 100644 --- a/modern/src/map/core/Map.js +++ b/modern/src/map/core/Map.js @@ -21,8 +21,6 @@ element.style.boxSizing = 'initial'; export const map = new maplibregl.Map({ container: element, - center: [0, 0], - zoom: 9, }); let ready = false; diff --git a/modern/src/map/switcher/switcher.js b/modern/src/map/switcher/switcher.js index 22ff9488..742ff8c3 100644 --- a/modern/src/map/switcher/switcher.js +++ b/modern/src/map/switcher/switcher.js @@ -43,6 +43,7 @@ export class SwitcherControl { if (this.currentStyle !== selectedStyle) { this.onSelectStyle(selectedStyleElement); + this.currentStyle = selectedStyle; } } |