From d85ee64708e56f56e70bd16c6de12cab4fe7fdfd Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Sun, 12 Dec 2021 17:21:32 +0100 Subject: [PATCH] make minZoom writable for personal theme --- Models/ThemeConfig/LayerConfig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/ThemeConfig/LayerConfig.ts b/Models/ThemeConfig/LayerConfig.ts index bad7871df8..bce97c06cb 100644 --- a/Models/ThemeConfig/LayerConfig.ts +++ b/Models/ThemeConfig/LayerConfig.ts @@ -34,8 +34,8 @@ export default class LayerConfig extends WithContextLoader { public readonly doNotDownload: boolean; public readonly passAllFeatures: boolean; public readonly isShown: TagRenderingConfig; - public readonly minzoom: number; - public readonly minzoomVisible: number; + public minzoom: number; + public minzoomVisible: number; public readonly maxzoom: number; public readonly title?: TagRenderingConfig; public readonly titleIcons: TagRenderingConfig[];