Awesome extension, so much potential.
Has anyone had success changing the basemap?
Assume the following data passed to deck
{
"initialViewState": {
"longitude": -122.45,
"latitude": 37.8,
"zoom": 6.6
},
"views": [
{
"@@type": "MapView",
"mapStyle": "https://basemaps.cartocdn.com/gl/dark-matter-nolabels-gl-style/style.json"
}
],
"layers": [
{
"@@type": "TextLayer",
"getColor": [0,255,255],
"data": [
{
"position": [ -122.45, 37.8 ],
"text": "Hello World"
}
]
}
]
}
This example works fine on the deck playground ( https://deck.gl/playground/ ), however the same basemap swap doesnβt work in dash_deck. Any hints on how to change the basemap to a non-mapbox source?