我是传单的新手,我想为从geojson格式派生的点图功能添加标签。
我收到错误:TypeError:layer.bindLabel不是此脚本中的函数https://jsfiddle.net/gfiske/ksx600sn/35/(取消注释第129行)
有人可以提出解决方法或更好的方法吗?
感谢。
geojsonLayer = L.geoJson(geojson, {
style: function(feature) {
return {
color: feature.properties.GPSUserColor
};
},
pointToLayer: function(feature, latlng) {
return new L.CircleMarker(latlng, {
radius: 7,
fillOpacity: 0.75
});
},
onEachFeature: function(feature, layer) {
layer.bindPopup(feature.properties.MAP_LABEL);
layer.bindLabel(feature.properties.MAP_LABEL);
}
});
答案 0 :(得分:2)
来自Leaflet.label
的文档:
注意:从Leaflet 1.0开始,L.Label作为L.Tooltip添加到Leaflet核心,并且不推荐使用此插件。
您应该使用bindTooltip
代替:
onEachFeature: function(feature, layer) {
layer.bindPopup(feature.properties.MAP_LABEL);
layer.bindTooltip(feature.properties.MAP_LABEL);
}