From 7b703f07c6134046f80e2d859f5d607f024df191 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 11 Jun 2022 16:34:29 -0700 Subject: Improve and fix map selection --- modern/src/map/switcher/switcher.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'modern/src/map/switcher/switcher.js') diff --git a/modern/src/map/switcher/switcher.js b/modern/src/map/switcher/switcher.js index 742ff8c3..60a5eff7 100644 --- a/modern/src/map/switcher/switcher.js +++ b/modern/src/map/switcher/switcher.js @@ -13,9 +13,11 @@ export class SwitcherControl { return 'top-right'; } - updateStyles(updatedStyles, selectedStyle) { + updateStyles(updatedStyles, defaultStyle) { this.styles = updatedStyles; + const selectedStyle = this.currentStyle || defaultStyle; + while (this.mapStyleContainer.firstChild) { this.mapStyleContainer.removeChild(this.mapStyleContainer.firstChild); } @@ -65,6 +67,8 @@ export class SwitcherControl { } target.classList.add('active'); + this.currentStyle = target.dataset.id; + this.onAfterSwitch(); } -- cgit v1.2.3