Plot.plot({
projection: {
type: form.projection,
rotate: [-form.lon, -form.lat],
domain: d3.geoCircle().center([form.lon, form.lat]).radius(form.scale)()
},
width,
marks: [
Plot.geo(world110m, { fill: "#ddd", stroke: "#bbb"}),
Plot.geo(usstates, { stroke: "#ccc" }),
Plot.geo(cvilleBounds, { stroke: "blue" }),
Plot.graticule(),
Plot.sphere( {stroke: "#ddd"} )
]
})