How do i display a geoviews map? or is there any way to customize st.map() with more detailed information about the data?

Can i display this using streamlit? Iโ€™m using geoviews lib

     map_points = gv.Points(map_df, ['lat', 'lon'], ['State', 'Active'])
    map_plot = (gvts.CartoDark * map_points).opts(
        opts.Points(width=1200, height=700, alpha=0.3,
                xaxis=None, yaxis=None,
                size=np.sqrt(dim('Active')*10))
    )

Hi @asd15, welcome to the Streamlit community! I canโ€™t seem to get the Geoviews examples to work on my computer, but from a brief scan of their docs, it looks like they are using Holoviews. If so, perhaps you could try something like this: