Folium
Install Folium
In [4]:
Copied!
import folium
import folium
Create an interactive map, and specify the default map center and zoom level. Choose a tile base layer.
In [7]:
Copied!
m = folium.Map(location =[36, -84], zoom_start=10)
m
m = folium.Map(location =[36, -84], zoom_start=10)
m
Out[7]:
Make this Notebook Trusted to load map: File -> Trust Notebook
Save the map.
In [ ]:
Copied!
m.save("index.html")
m.save("index.html")
Last update:
2023-05-11