Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

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: