1
Alterando o estilo padrão no ponto GeoJSON Layer no Leaflet?
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: …