Plot.plot({width:3000,height:3000,
projection: {type: "orthographic",rotate: [80, -34], domain:circle},
r: {transform: (d) => Math.pow(10, d)},
style: "overflow: visible;",
marks: [
Plot.geo(loweManhattanJson, {fill: "blue", fillOpacity: 0.7, type:"md"}),
Plot.geo( , {fill: "green", stroke:"green", fillOpacity: 0.5, type:"md",
tip: true}),
Plot.dot(dgi.features, {x: (d) => d.geometry.coordinates[0], y: (d) => d.geometry.coordinates[1],
r: .7,
stroke: "cyan",
fill: "cyan",
fillOpacity: 0.1,
channels: { asset_type: (d) => d.properties.asset_type },
tip: true})
]
})