Here’s a basic example of creating a map:
import folium
m = folium.Map(location=(45.5236, -122.6750))
If you are in a Jupyter Notebook, you can display it by asking for the object representation:
m
Or you can save it as an HTML file:
Here’s a basic example of creating a map:
import folium
m = folium.Map(location=(45.5236, -122.6750))
If you are in a Jupyter Notebook, you can display it by asking for the object representation:
m
Or you can save it as an HTML file: