From ef5caf9e4736427b8b6c303d4bcc8439a28a921b Mon Sep 17 00:00:00 2001 From: Grant Date: Wed, 10 Jan 2024 15:04:32 +0000 Subject: [PATCH] Fix leafletjs template maxZoom to great than 18 zoom (#749) --- src/titiler/core/titiler/core/templates/map.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/titiler/core/titiler/core/templates/map.html b/src/titiler/core/titiler/core/templates/map.html index 5aac27d8b..5c4f284c0 100644 --- a/src/titiler/core/titiler/core/templates/map.html +++ b/src/titiler/core/titiler/core/templates/map.html @@ -113,7 +113,7 @@ L.tileLayer( data.tiles[0], { minZoom: data.minzoom, - maxNativeZoom: data.maxzoom, + maxZoom: data.maxzoom, bounds: L.latLngBounds([bottom, left], [top, right]), } ).addTo(map);