{
const circles = d3.select(map).selectAll("circle")
.attr("stroke", "red")
.attr("stroke-width", 0.5)
.attr("fill-opacity", 0.2)
.attr("r", d => d.datum.properties.mag)
return md`There are ${circles.nodes().length} earthquakes displayed on the map.`
}