async function drawUSMap(svg) {
svg
.append("path")
.datum(nation)
.attr("fill", "#f3f3f3")
.attr("d", path);
svg
.append("path")
.datum(countiesMesh)
.attr("fill", "none")
.attr("stroke", '#e6e6e6')
.attr("stroke-width", .5)
.attr("stroke-linejoin", "round")
.attr("d", path);
svg
.append("path")
.datum(statesMesh)
.attr("fill", "none")
.attr("stroke", '#bdbdbd')
.attr("stroke-width", .5)
.attr("stroke-linejoin", "round")
.attr("d", path);
}