Hi all,
I have a dataframe that generates a map using the following code:
fig_map = px.scatter_mapbox(df_children,lat='Latitude',lon='Longitude',
mapbox_style='carto-positron',
width=1000,height=1000,color='column_02',size='population',
hover_name='address',
hover_data={'address':True,'opening_hours':True
)
fig_map.update_traces(hovertemplate="Address: %{address} <br>Opening Hours: %{opening_hours}")
fig.update_traces(marker_symbol='cross',marker_size=12)
For implementation reasons I need to change the βcircleβ that shows in the map to other symbol but what I get is an empty map in return.
Any idea how I can change the marker symbol?
Regarding the hover template, even if I have set the both columns as true, the resulting label does not render the rows of the column.
Any idea how to change this behaviour?
Thank you for your help ,in advance!
Disclaimer: This is a project for an non-profit NGO with no commercial purposes.