diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-11-01 18:44:31 -0800 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-11-01 18:44:31 -0800 |
commit | 47b95d6739d8bfcb2ee285ffaaffc8fc41520f1f (patch) | |
tree | 54767ba07ca2785d4dd613cf23956fbdc206597e /modern/src/map/switcher/switcher.js | |
parent | 4cbb539001e8ba536674373efb60160b16a5d111 (diff) | |
download | trackermap-web-47b95d6739d8bfcb2ee285ffaaffc8fc41520f1f.tar.gz trackermap-web-47b95d6739d8bfcb2ee285ffaaffc8fc41520f1f.tar.bz2 trackermap-web-47b95d6739d8bfcb2ee285ffaaffc8fc41520f1f.zip |
Improve map switching
Diffstat (limited to 'modern/src/map/switcher/switcher.js')
-rw-r--r-- | modern/src/map/switcher/switcher.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modern/src/map/switcher/switcher.js b/modern/src/map/switcher/switcher.js index ff9fbe97..c2b9d6d4 100644 --- a/modern/src/map/switcher/switcher.js +++ b/modern/src/map/switcher/switcher.js @@ -32,9 +32,13 @@ export class SwitcherControl { if (srcElement.classList.contains('active')) { return; } + console.log('beforeSwitch start'); this.beforeSwitch(); + console.log('beforeSwitch end'); this.map.setStyle(JSON.parse(srcElement.dataset.uri)); + console.log('afterSwitch start'); this.afterSwitch(); + console.log('afterSwitch end'); this.mapStyleContainer.style.display = 'none'; this.styleButton.style.display = 'block'; const elms = this.mapStyleContainer.getElementsByClassName('active'); |