map = {
let map = d3
.create("svg")
.attr("width", map_width)
.attr("height", map_height);
let county_group = map
.append("g")
.selectAll('path')
.data(counties.features)
.enter()
.append('path')
.attr('d', geoGenerator)
.style('stroke', 'black')
.style('stroke-width', '1px')
.style('fill', d => d3.interpolateBlues((d.properties.POP / M) ** 0.4))
.attr('title', function(d) {
console.log(d.properties);
return `${d.properties.NAMELSAD}: Population ${d.properties.POP}`;
});
county_group.nodes().forEach(tippy);
return map.node();
}