1# Plotly is a great to great many type of static maps (density map, choropleth, hexbin, etc);
2# https://plotly.com/python/maps/
3
4# Folium is a better for interective maps;
5import folium
6m = folium.Map(location=[45.5236, -122.6750])
7m
8# The result will show an interactive map, similar to google map;