Plot.plot({
projection: "equirectangular",
style: "overflow: visible;",
marks: [
Plot.geo(land, {fill: "currentColor", fillOpacity: 0.2}),
Plot.sphere(),
Plot.graticule({strokeOpacity: 0.3}),
Plot.geo(earthquakes, {
r: (d) => Math.pow(10, d.properties.mag),
fill: "red",
fillOpacity: 0.2,
stroke: "red",
title: (d) => d.properties.title,
href: (d) => d.properties.url,
target: "_blank"
})
]
})