Skip to content

Commit

Permalink
Fix leafletjs template maxZoom to great than 18 zoom (#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
Firefishy authored Jan 10, 2024
1 parent e396959 commit ef5caf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/titiler/core/titiler/core/templates/map.html
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ef5caf9

Please sign in to comment.