Preciso alterar o estilo em uma camada GeoJSON de ponto em um mapa do Leaflet.
Estou usando o seguinte código:
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);
Tudo está funcionando, mas sempre há o marcador azul padrão no meu mapa.