Hi @charlenni ,
I wonder if it's possible to load vector tiles from vectorSource like endpoint. In example application for Android Mapbox Maps SDK I could see that kind of Android code to load those:
mapboxMap.loadStyleUri(Style.LIGHT) {
it.addSource(
vectorSource(SOURCE_ID) {
tiles(listOf("https://tiles.mapillary.com/maps/vtp/mly1_public/2/{z/{x}/{y}?access_token={SECRECT}"))
minzoom(4)
maxzoom(20)
}
)
Is this possible in your project or do you have idea how to implement that part?
Hi @charlenni ,
I wonder if it's possible to load vector tiles from vectorSource like endpoint. In example application for Android Mapbox Maps SDK I could see that kind of Android code to load those:
Is this possible in your project or do you have idea how to implement that part?