Mapping polylines

It looks like st.map() only works with point data with lat/long. Does anyone know if there’s a way to map polylines with streamlit?

Hi @Peter_Bishop, welcome to the Streamlit community! st.map is intended to be syntactic sugar for quickly plotting; if you use st.pydeck_chart, you specify the deck.gl chart you are interested in creating. I do not know for certain if that includes polylines, but I suspect it does.

https://docs.streamlit.io/en/latest/api.html?highlight=pydeck_chart#streamlit.pydeck_chart

Best,
Randy