为什么在使用基于 ArcGIS 的服务的底图时不显示切片图层,例如https://uneplivemapservices.unep.org/arcgis/rest/services/UNBASEMAP_Tiled/MapServer
var { LMap, LTileLayer, LMarker } = Vue2Leaflet;
new Vue({
el: '#app',
components: { LMap, LTileLayer, LMarker },
data() {
return {
zoom:13,
center: L.latLng(47.413220, -1.219482),
//URL BELOW NOT WORKING
url:'https://uneplivemapservices.unep.org/arcgis/rest/services/UNBASEMAP_Tiled/MapServer', //NOT WORKING
//URL BELOW WORKING
//url:'http://{s}.tile.osm.org/{z}/{x}/{y}.png', //WORKING
attribution:'© <a href="http://osm.org /copyright">OpenStreetMap</a> contributors',
marker: L.latLng(47.413220, -1.219482),
}
}
});