我需要在Leaflet地图中的点GeoJSON图层上更改样式。
我正在使用以下代码:
function onEachFeature(feature, layer) {
if (feature.properties && feature.properties.popupContent) {
layer.bindPopup(feature.properties.popupContent);
}
}
var myStyle = {
"color": "#ff7800",
"weight": 5,
"opacity": 0.65
};
myGeoJSONLayer = L.geoJson(myGeoJSON, {
style: myStyle,
onEachFeature: onEachFeature,
});
myGeoJSONLayer.addTo(map);
一切正常,但是我的地图上始终有标准的默认蓝色标记。