var options = {
center: [53.2, -2.0],
zoom: 6
};
var map = new L.Map('map', options);
var streetLayer = L.tileLayer('http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png', {
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors</a>'
}).addTo(map);
L.control.layers({
'Map': streetLayer,
'Satellite': MQ.satelliteLayer()
}, null, {'collapsed': false, 'position': 'bottomleft'}).addTo(map);
수 있습니까 설정에 따라 레이어 최대 줌 레벨? 거리 계층에서 최대 18 배, 위성 계층에서 최대 21 배 확대 (최대 확대/축소 수준을 사용할 수 있기 때문에)입니다.
streetLayer
개체에 maxZoom: 18
설정을 시도했지만 아무 것도하지 않는 것 같습니다. options
의 동일한 옵션은 전역 최대 확대/축소를 설정하지만 이는 분명 내가 원하는 것이 아닙니다.
감사합니다. 제안한대로 maxNativeZoom을 사용했습니다. – Richard