1
¿Cambiar el estilo predeterminado en el punto GeoJSON Layer en Leaflet?
Necesito cambiar el estilo en una capa GeoJSON de punto en un mapa de folleto. Estoy usando el siguiente 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: …