传单 - 添加图例标题

时间:2014-01-23 12:04:41

标签: map leaflet legend-properties

我是Leaflet的新手,我目前正在努力学习教程。到目前为止,我设法创建了一个交互式clorophet地图,如示例http://leafletjs.com/examples/choropleth.html

我有一个问题:是否可以在页面底部的腿上添加标题(简单文字,而非动态)?有人可以通过引用链接的例子告诉我怎么做?

非常感谢, -G。

2 个答案:

答案 0 :(得分:7)

您只需要在" THE TITLE" ...

下添加您的标题
var legend = L.control({position: 'topleft'});  
    legend.onAdd = function (map) {

    var div = L.DomUtil.create('div', 'info legend'),
        grades = [50, 100, 150, 200, 250, 300],
        labels = ['<strong> THE TITLE </strong>'],
        from, to;

    for (var i = 0; i < grades.length; i++) {
        from = grades [i];
        to = grades[i+1]-1;

    labels.push(
        '<i style="background:' + getColor(from + 1) + '"></i> ' +
        from + (to ? '&ndash;' + to : '+'));
        }
        div.innerHTML = labels.join('<br>');
        return div;


        };

答案 1 :(得分:1)

Francisco Vargas :getColor是一个定义密度的函数:

function getColor(d) {
        return d > 1000 ? '#800026' :
               d > 500  ? '#BD0026' :
               d > 200  ? '#E31A1C' :
               d > 100  ? '#FC4E2A' :
               d > 50   ? '#FD8D3C' :
               d > 20   ? '#FEB24C' :
               d > 10   ? '#FED976' :
                          '#FFEDA0';
}