要在Stamen地图中标记州的中心,您可以使用以下代码示例:
import folium
from geopy.geocoders import Nominatim
# 创建一个地图对象
map = folium.Map(location=[37.0902, -95.7129], zoom_start=4) # 以美国的经纬度为初始位置
# 创建一个地理编码器对象
geolocator = Nominatim(user_agent="geoapiExercises")
# 获取州的中心坐标
def get_state_center(state):
location = geolocator.geocode(state)
return location.point
# 标记州的中心
def mark_state_center(state):
center = get_state_center(state)
folium.Marker(location=[center.latitude, center.longitude], popup=state).add_to(map)
# 调用标记函数来标记多个州的中心
states = ["California", "Texas", "New York", "Florida"]
for state in states:
mark_state_center(state)
# 保存地图为HTML文件
map.save("state_centers.html")
请确保在运行代码之前安装了folium
和geopy
库。此代码将创建一个Stamen地图,并在指定的州中心位置添加标记。最后,它将地图保存为名为state_centers.html
的HTML文件。
上一篇:标记数组中的唯一行