Plot.plot({
projection: { type: "mercator", domain: kallikratisEPSG4326 },
width,
r: {range: [0, 12]},
marks: [
Plot.geo(kallikratisEPSG4326, Plot.pointer(Plot.centroid({fill:"yellow"}))),
Plot.geo(kallikratisEPSG4326, {stroke: "lightgray"}),
Plot.geo(forrestEPSG4326, {stroke: "lightgreen"}),
Plot.geo(countiesEPSG4326, {stroke: "black"}),
Plot.dot(forrestEPSG4326.features, Plot.centroid({fill: showForest ? "lightgray" : null, fillOpacity: 0.5, stroke: "green", strokeOpacity: 0.5})),
Plot.tip(forrestEPSG4326.features, Plot.pointer(Plot.centroid({title: (d) => `${d.properties.DASARXEIO}, ${d.properties.DNSH_DASON}`})))
]
})