From eeaa67a1fcafb2a95bea450035504726b9481838 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 1 Aug 2022 08:10:53 -0700 Subject: Fix ordnance survey map --- modern/src/map/switcher/switcher.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'modern/src/map/switcher') diff --git a/modern/src/map/switcher/switcher.js b/modern/src/map/switcher/switcher.js index 8fe48929..ee0f41ed 100644 --- a/modern/src/map/switcher/switcher.js +++ b/modern/src/map/switcher/switcher.js @@ -15,6 +15,10 @@ export class SwitcherControl { return 'top-right'; } + getStyle(id) { + return this.styles.find((it) => it.id === id); + } + updateStyles(updatedStyles, defaultStyle) { this.styles = updatedStyles; @@ -63,9 +67,9 @@ export class SwitcherControl { onSelectStyle(target) { this.onBeforeSwitch(); - this.map.setStyle(JSON.parse(target.dataset.style), { - diff: false, - }); + const style = this.getStyle(target.dataset.id); + this.map.setStyle(style.style, { diff: false }); + this.map.setTransformRequest(style.transformRequest); this.onSwitch(target.dataset.id); -- cgit v1.2.3