Can I use mapbox with bokeh backend?

I see with plotly, but not bokeh
https://holoviews.org/reference/elements/plotly/Tiles.html

Okay, it’s possible with Styles (not tilesets, or I haven’t found a way yet)

import holoviews as hv
import xyzservices.providers as xyz
hv.extension("bokeh")
xyz.MapBox["accessToken"] = "pk.ey.............................................."  # insert token
tiles = xyz.MapBox(id="YOUR_ORG/THE_ID_FROM_THE_BROWSER_URL")
hv.Tiles(tiles)
1 Like

Also this does not include hoverable attributes.