Plot.plot({
color: { legend: true, range: ["gray", "red"] },
r: { range: [0.5, 12] },
projection: "albers-usa",
marks: [
Plot.geo(states, { fill: "#ccc", stroke: "white" }),
Plot.dot(power_plants, {
x: "longitude",
y: "latitude",
r: "total_capacity",
fill: (d) => d.primary_source === pickSource,
tip: true,
sort: { channel: "fill" }
})
]
})