Hello,
I’m trying to put some text next to my markers in a px.scatter_mapbox(). I’m using a mapbox_token since I read about this not working with regular maps.
What happens is that some of the labels appear and some others don’t.
Here’s my code.
fig = px.scatter_mapbox(coords_df, lat="lat", lon="lon", color='AQI',
hover_name="Station", hover_data=['AQI'],
text = coords_df['Station'].to_numpy(),
color_continuous_scale=["blue", "green", "red"],
zoom=12, height=400)
Any help will be apreciated.