Devo cambiare stile su un livello GeoJSON punto in una mappa Leaflet.
Sto usando il seguente codice:
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);
Tutto funziona ma sulla mia mappa c'è sempre l'indicatore blu predefinito standard.