kartena / Proj4Leaflet

Smooth Proj4js integration with Leaflet.
http://kartena.github.io/Proj4Leaflet/
BSD 2-Clause "Simplified" License
589 stars 173 forks source link

Small fix for the documentation #172

Open maaattes opened 4 years ago

maaattes commented 4 years ago

In the example at http://www.liedman.net/Proj4Leaflet/#getting-started there is this line of code

maxZoom: crs.options.resolutions.length,
…

but it should be

maxZoom: crs.options.resolutions.length-1,
…

or am I mistaken?