📜  python显示地图 - Python代码示例

📅  最后修改于: 2022-03-11 14:46:27.755000             🧑  作者: Mango

代码示例1
# Plotly is a great to great many type of static maps (density map, choropleth, hexbin, etc);
# https://plotly.com/python/maps/

# Folium is a better for interective maps;
import folium
m = folium.Map(location=[45.5236, -122.6750])
m
# The result will show an interactive map, similar to google map;