Folium.CircleMarker似乎无法正常工作

时间:2020-06-29 15:18:58

标签: python python-3.x jupyter-notebook markers folium

过去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

我正在尝试创建一个带有标记/按钮的地图,以反映新墨西哥州内的县。最终,这些将显示人均收入,家庭收入和其他人口/人口统计数据,以帮助可视化未来应该在哪里发展学校。

screenshot of data file (common csv excel file)

1 个答案:

答案 0 :(得分:0)

请注意,在表示csv文件的图像中,经度消失之前的减号。使用它,您将得到类似:

enter image description here

这是玩具代码:

torch.jit.trace