Alterando o estilo padrão no ponto GeoJSON Layer no Leaflet?

9

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.

Cesare
fonte

Respostas:

15

Para alterar marcadores de ponto, você deve usar a pointToLayerfunção Veja a página de exemplo .

var geojsonMarkerOptions = {
    radius: 8,
    fillColor: "#ff7800",
    color: "#000",
    weight: 1,
    opacity: 1,
    fillOpacity: 0.8
};

L.geoJson(someGeojsonFeature, {
    pointToLayer: function (feature, latlng) {
        return L.circleMarker(latlng, geojsonMarkerOptions);
    }
}).addTo(map);
julien
fonte