I’ve created a dashboard with a map (from Mapbox) and multiple plots around it. It works just fine, although there is a minor tweak I can’t apply: I would like to hide the sea labels.
Using Mapbox Studio I managed to do it by hiding the layer named Marine Labels. But, how can I do it in my code?
The code (the relevant part of it) looks like these:
layout = go.Layout(
plot_bgcolor= 'rgba(0,0,0,1)',
paper_bgcolor= 'rgba(0,0,0,1)',
autosize=True,
hovermode='closest',
mapbox=dict(
accesstoken=mapbox_access_token,
bearing=0,
center=dict(
lat=0,
lon=0
),
pitch=0,
zoom=7,
style='dark'
),
)
Thanks