Estoy tratando de agregar un arcgis online sirve de vector de baldosas de servicio para un Folleto con un mapa. Estoy usando ( https://github.com/Leaflet/Leaflet.VectorGrid ) para agregar el vector de baldosas para un Folleto de v1.3.1 mapa de la aplicación.
Soy capaz de agregar ESRI capas en el Folleto mapa con el siguiente código simplificado:
var esriTilesUrl = "https://basemaps.arcgis.com/v1/arcgis/rest/services/World_Basemap/VectorTileServer/tile/{z}/{y}/{x}.pbf";
var esriTilesPbfLayer = L.vectorGrid.protobuf(esriTilesUrl);
esriTilesPbfLayer.addTo(map);
Sin embargo, cuando intento agregar mi arcgis online vector de azulejos para el folleto de mapa usando el mismo código
var esriTilesUrl = "https://tiles.arcgis.com/tiles/l4TwMwwoiuEVRPw9/arcgis/rest/services/CaryHouseHolds/VectorTileServer/tile/{z}/{y}/{x}.pbf";
var esriTilesPbfLayer = L.vectorGrid.protobuf(esriTilesUrl);
esriTilesPbfLayer.addTo(map);
Me sale el siguiente error:
OBTENER https://tiles.arcgis.com/tiles/l4TwMwwoiuEVRPw9/arcgis/rest/services/CaryHouseHolds/VectorTileServer/tile/13/3222/2303.pbf 404 ()
¿Cuál es la dirección url correcta para el uso de consumir arcgis online vector de azulejos?