전단지 javascript API를 사용하여 레벨 19보다 더 확대 하시겠습니까?


15

확대 / 축소 수준을 최대 19까지 지원하는 타일 레이어와 함께 전단지 JavaScript API를 사용하고 있습니다. 타일을 흐리게하여도 마커를 높은 정확도로 배치해야하므로 사용자가 더 확대 할 수 있기를 바랍니다.

이게 가능해 ?

지도 나 마커가 아닌지도를 확대하고 싶습니다.

답변:


20

이제 0.7 버전부터 타일을 보간 할 'maxNativeZoom'이라는 추가 옵션이 있습니다.

최신 문서에 대한 링크 는 다음과 같습니다.maxNativeZoom

정보는 다음과 같습니다.

minZoom Number  0   Minimum zoom number.
maxZoom Number  18  Maximum zoom number.
maxNativeZoom   Number  null    Maximum zoom number the tiles source has available. If it is specified, the tiles on all zoom levels higher than maxNativeZoom will be loaded from maxZoom level and auto-scaled.

그것을 달성하기 위해 사용하는 코드 예제는 다음과 같습니다.

var aerial = new L.tileLayer(serverURL + "/arcgis/rest/services/Basemaps/Orthophoto/ImageServer/tile/{z}/{y}/{x}", {
    attribution: attribution,
    maxZoom: 20,
    maxNativeZoom: 18
});

1
완벽한 솔루션
ajayel
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.