Plot.plot({
height: 900,
projection: projection,
marks: [
Plot.geo(rewind(geoPLZ), {
stroke: "grey",
strokeOpacity: 0.6,
fill: (d) => +d.properties.postcode[0]
}),
Plot.dot([[11.521229152237028, 48.149328045880495]], {
fill: "black"
}),
Plot.text([[11.521229152237028, 48.149328045880495]], {
text: ["München"],
dy: -10,
stroke: "white",
fill: "black",
pointerEvents: "none"
})
]
})