How to show gmaps object (from Google Maps api) on streamlit

Hey @randyzwitch thanks for your reply :slight_smile:

In this discussion about pywidgets I found this solution that seems to do the job.
ipywidgets streamlit discussion

from ipywidgets import embed
snippet = embed.embed_snippet(views=map)
html = embed.html_template.format(title="", snippet=snippet)

import streamlit.components.v1 as components
components.html(html, height=500,width=500)
1 Like