我需要在传单地图上使用GeoJSON图层。这是我的代码示例:
function onEachFeature(feature, layer) {
if (feature.properties && feature.properties.popupContent) {
layer.bindPopup(feature.properties.popupContent);
}
}
myGeoJsonLayer = L.geoJson(data, {
pointToLayer: function (feature, latlng) {
return L.circleMarker(latlng, geojsonMarkerOptions);
},
onEachFeature: onEachFeature
});
myGeoJsonLayer.addTo(map);
TOC.addOverlay(myGeoJsonLayer, "My GeoJSON Layer");
一切正常。
现在,我想在图层上添加归因,但如何?
我在[这里] [1]收到了回复。我已经尝试过,并且工作正常。[1]:stackoverflow.com/questions/25664516/...
—
切萨雷
您能否将问题标记为已回答?(gis.stackexchange.com/help/self-answer)
—
托马斯乙