mapAll = makeSVG((svg) =>
svg
.append("g")
.selectAll("path")
.data(
parcels.features.filter(
(f) => !f.properties.owner?.toLowerCase().includes("brown")
)
)
.join("path")
.attr("fill", "rgba(0, 255, 0, 0.1)")
.attr("d", path)
.append("title")
.text((f) => `${f.properties.owner} x ${f.properties.parc_add}`)
)