在Folium地图上创建一个图例

时间:2016-05-26 16:43:13

标签: python folium

此时Folium文档不完整:https://folium.readthedocs.io/en/latest/

根据不完整文档的索引,传说和图层是或将得到支持。我花了一些时间在网上寻找示例,但到目前为止还没有找到任何结果。如果有人知道如何创建这些东西,或者可以指向我的文档或教程,我将非常感激。

5 个答案:

答案 0 :(得分:4)

尝试使用

feature_group = FeatureGroup(name='Layer1')
feature_group2 = FeatureGroup(name='Layer2')

然后添加到您的地图

map = folium.Map(zoom_start=6)

# coordinates to locate your marker
COORDINATE = [(333,333)] # example coordinate
COORDINATE2 = [(444,444)]

# add marker to your map
folium.Marker(location=COORDINATE).add_to(feature_group)
folium.Marker(location=COORDINATE2).add_to(feature_group2)

map.add_child(feature_group)
map.add_child(feature_group2)

# turn on layer control
map.add_child(folium.map.LayerControl())

答案 1 :(得分:4)

您可以轻松添加图例;

#specify the min and max values of your data
colormap = branca.colormap.linear.YlOrRd_09.scale(0, 8500)
colormap = colormap.to_step(index=[0, 1000, 3000, 5000, 8500])
colormap.caption = 'Incidents of Crime in Victoria (year ending June 2018)'
colormap.add_to(world_map)

您可以在此处看到我的完整示例;

Folium Map with legend example

答案 2 :(得分:2)

我遇到了同样的问题,并使用这个快速入侵由Folium生成的HTML来添加图例。它不是特别优雅,但它有效。由于我只需要这几次,我手动生成图例作为图像(legend.png),但我想你可以创建一个脚本来自动创建图例,如果你经常这样做的话。我在Folium输出我的地图的HTML文件的相应部分中添加了以下组件:

         <style> #background_img {
            position : absolute;
            background:url('legend.png');
            width : 16.9%;
            height: 17.7%;
            right: 20px;
            bottom: 50px;
            z-index: 99;
            background-repeat: no-repeat;
            background-size: contain; 
            }
        </style>

        <div id="background_img" class="backgroundimg" ></div>

您还需要将地图样式元素的z-index更改为小于99的值,以便将图例放置在地图上方。

答案 3 :(得分:2)

Folium现在可以使用0.15版本轻松添加图像。

from folium.plugins import FloatImage
image_file = 'image.PNG'

FloatImage(image_file, bottom=0, left=86).add_to(mymap)

答案 4 :(得分:1)

如果将html添加到Marker或PolyLine的name参数中,则可以在图层控件中获得文本/标签颜色的一半:

import folium
print( folium.__version__)
import numpy as np

lon_ct = 50
fkt=10
num = 60
m = folium.Map((lon_ct, 6), tiles='stamentoner', zoom_start=6 )


lats = (lon_ct * np.cos(np.linspace(0, 2*np.pi, num))/fkt ) + lon_ct
lons = (lon_ct * np.sin(np.linspace(0, 2*np.pi, num))/fkt ) + 10
colors = np.sin(5 *    np.linspace(0, 2*np.pi, num))

lgd_txt = '<span style="color: {col};">{txt}</span>'

for idx, color in enumerate( ['red', 'blue']):  # color choice is limited
    print(color)
    fg = folium.FeatureGroup(name= lgd_txt.format( txt= color+' egg', col= color))
    pl = folium.features.PolyLine(
            list(zip(lats, lons - idx*fkt)),
            color=color,            
            weight=10, )
    fg.add_child(pl)
    m.add_child( fg)

folium.map.LayerControl('topleft', collapsed= False).add_to(m)
m

enter image description here

来源:html_legend

如果您懂一点HTML:

item_txt = """<br> &nbsp; {item} &nbsp; <i class="fa fa-map-marker fa-2x" style="color:{col}"></i>"""
html_itms = item_txt.format( item= "mark_1" , col= "red")

legend_html = """
     <div style="
     position: fixed; 
     bottom: 50px; left: 50px; width: 200px; height: 160px; 
     border:2px solid grey; z-index:9999; 

     background-color:white;
     opacity: .85;

     font-size:14px;
     font-weight: bold;

     ">
     &nbsp; {title} 

     {itm_txt}

      </div> """.format( title = "Legend html", itm_txt= html_itms)
map.get_root().html.add_child(folium.Element( legend_html ))

链接basic

链接advanced