From e5f21c36d3f9033c47dc4f660401dfe85a782d8a Mon Sep 17 00:00:00 2001 From: ARandomGitHubUser <7754708+ARandomGitHubUser@users.noreply.github.com> Date: Fri, 28 Mar 2025 12:24:54 -0400 Subject: [PATCH] Allow maxZoom 20 on custom tiles --- html/layers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/layers.js b/html/layers.js index a9d2537..36a145c 100644 --- a/html/layers.js +++ b/html/layers.js @@ -28,7 +28,7 @@ function createBaseLayers() { custom_layers.push(new ol.layer.Tile({ source: new ol.source.OSM({ "url" : loStore['customTiles'], - maxZoom: 15, + maxZoom: 20, transition: tileTransition, }), name: 'custom_tiles',