Skip to content

Commit ef5caf9

Browse files
authored
Fix leafletjs template maxZoom to great than 18 zoom (#749)
1 parent e396959 commit ef5caf9

File tree

1 file changed

+1
-1
lines changed
  • src/titiler/core/titiler/core/templates

1 file changed

+1
-1
lines changed

src/titiler/core/titiler/core/templates/map.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
L.tileLayer(
114114
data.tiles[0], {
115115
minZoom: data.minzoom,
116-
maxNativeZoom: data.maxzoom,
116+
maxZoom: data.maxzoom,
117117
bounds: L.latLngBounds([bottom, left], [top, right]),
118118
}
119119
).addTo(map);

0 commit comments

Comments
 (0)