过去10天,我一直在反复进行此操作,无法弄清楚为什么我的地图会显示,但标记不会显示。
我正在从csv文件中提取经度和纬度,并将其与Wiki中的抓取文件结合在一起。
我正在使用以下代码创建显示:
# create map of New Mexico using latitude and longitude values
map_NM = folium.Map(location=[latitude, longitude], zoom_start=7)
map_NM
我正在使用以下代码创建标记:
for lat, lng, County in zip(
df_NewMex['Lat'],
df_NewMex['Long'],
df_NewMex['County'],):
label = '{}'.format(County)
label = folium.Popup(label, parse_html=True)
folium.CircleMarker(
[lat, lng],
radius=5,
popup=label,
color='blue',
fill=True,
fill_color='#3186cc',
fill_opacity=0.7,
parse_html=False).add_to(map_NM)
map_NM
我正在尝试创建一个带有标记/按钮的地图,以反映新墨西哥州内的县。最终,这些将显示人均收入,家庭收入和其他人口/人口统计数据,以帮助可视化未来应该在哪里发展学校。