Hi, we host a VectorTileServer (tile format is pbf) with this an URL like this:
https://mydomain.com/arcgisimage/rest/services/Hosted/WW_mygeo_Afrika_111111_B_/VectorTileServer/tile/0/0/0.pbf
The code to load the server looks like this. The load is successful but the map remains gray. Loading the map in the browser works fine.
val webTileLayer = WebTiledLayer.create("url_from_above")
webTileLayer.load()
.onSuccess {
Timber.d("WmsLayer loaded with status ${webTileLayer.loadStatus.value}")
webTileLayer.let {
Timber.d("There are ${webTileLayer.subDomains.size} subdomains in the tile layer")
mapView.map = ArcGISMap(Basemap(webTileLayer))
}
}Do you have any idea why loading the map does not work?