val webTiledLayer = WebTiledLayer.create(urlTemplate = "https://geoportal.ancpi.ro/maps/rest/services/Ortofoto/Mozaic_vt/MapServer/tile/tile/{level}/{row}/{col}?blankTile=false")
val vectorTileLayer = ArcGISVectorTiledLayer("https://geoportal.ancpi.ro/hosted_services/rest/services/Hosted/imobile_cladiri/VectorTileServer")
val vectorTileLayerBase = ArcGISVectorTiledLayer("https://geoportal.ancpi.ro/hosted_services/rest/services/Hosted/imobile_cladiri/VectorTileServer/tile/0/0/0.pbf")
arcGISMap = ArcGISMap(SpatialReference(3844)).apply {
operationalLayers.add(webTiledLayer)
operationalLayers.add(vectorTileLayerBase)
}
Hello
I would like to display some layers from ANCPI. I've already tried the following three:
Unfortunately, it doesn't work. Is it because of the spatial reference?
What else could I try?