quakes = {
function onEachFeature(feature, layer) {
var popupContent = "<p> Earthquake Location: " +
feature.properties.place +". <p> Magnitude: " + feature.properties.mag + "<p> Coordinates: " + feature.geometry.coordinates;
if (feature.properties && feature.properties.popupContent) {
popupContent += feature.properties.popupContent;
}
layer.bindPopup(popupContent);
}
const quakes = L.geoJSON([earthquakes], {
style: function (feature) {
return feature.properties && feature.properties.style;
},
onEachFeature: onEachFeature,
pointToLayer: function (feature, latlng) {
return L.circleMarker(latlng, {
radius: 8,
fillColor: "#ff7800",
color: "#000",
weight: 1,
opacity: 1,
fillOpacity: 0.8
});
}
}).addTo(map);
return quakes;
}