Plot.plot({
projection: projection,
width: width,
height: height,
marks: [
Plot.graticule({stroke: "#ddd", strokeOpacity: 1}),
Plot.geo(land, {fill: "#ddd"}),
Plot.sphere(),
Plot.geo(data, {
r: 1.5,
fill: "#000",
title: (d) => d.properties.title,
href: (d) => d.properties.url,
target: "_blank"
})
]
})