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: