Plot.plot({
projection: {
type: "mercator",
domain: d3.geoCircle().center([ 12, 62]).radius(8.9)(),
inset: 2
},
marks: [
Plot.geo(countries),
Plot.dot(womenLatLon, {
x: "lon",
y: "lat",
r: 10,
fill: "city",
fillOpacity: 0.2,
stroke: "city",
strokeWidth: 1,
strokeOpacity: 0.4
}),
],
color: { legend: true }, // Include a legend for the fill color
height: 500, // Update canvas height
width: 800, // Update canvas width
margin: 24 // Update margins
})