Plot.plot({
width: 688,
projection: "albers-usa",
length: {range: [0, 200]},
style: "overflow: visible;",
marks: [
Plot.geo(statemesh, {strokeOpacity: 0.5}),
Plot.geo(nation),
Plot.spike(counties, Plot.geoCentroid({length: (d) => d.properties.population, stroke: "green"}))
]
})