我正在使用结合了GeoJSON功能的Leaflet。有没有办法标记GeoJSON要素(在本例中为多边形)?它应该从获得标签
feature.properties.name
这是我想在其中插入标签的代码:
function style(feature) {
return {
weight: 2,
opacity: 1,
color: 'white',
dashArray: '3',
fillOpacity: 0.7,
fillColor: getColor(feature.properties.coloring)
};
}
1
您是否愿意发布用于标记多边形的解决方案(如果仍在手边)?
—
2015年