如何更改叶片/ geojson颜色

时间:2019-10-17 16:33:29

标签: python geojson folium

我希望在不同的图层上使其颜色不同, 因此,请按照如下方式使用style_function:

style1 = {'fillColor': '#228B22', 'lineColor': '#228B22'}
style2 = {'fillColor': '#00FFFFFF', 'lineColor': '#00FFFFFF'}

test1=gpd.read_file('file2.geojson')
folium.GeoJson(test1,name='test1',style_function=lambda x:style).add_to(mainmap)

test2=gpd.read_file('file1.geojson')
folium.GeoJson(test2,name='test2', style_function=lambda x:style2).add_to(mainmap)

但是,它不能在线运行,仍然是默认的蓝色。

1 个答案:

答案 0 :(得分:2)

一种简单的方法是替换

style1 = {'fillColor': '#228B22', 'lineColor': '#228B22'}
style2 = {'fillColor': '#00FFFFFF', 'lineColor': '#00FFFFFF'}

通过

style1 = {'fillColor': '#228B22', 'color': '#228B22'}
style2 = {'fillColor': '#00FFFFFF', 'color': '#00FFFFFF'}