2014-12-11 11 views

Antwort

17

Wenn Sie Ihre Karte initialisiert

var map = L.map('map').setView([51.505, -0.09], 13); 

dann können Sie einfach tun:

map.options.minZoom = 12; 
map.options.maxZoom = 14; 

Example JSFiddle.

+0

ja ... danke. – bardu