function make_map() {
console.log(['map_width is', map_width]);
let svg = d3
.create("svg")
.attr('width', map_width)
.attr('height', map_height);
const mapbg = DOM.uid('mapbg');
svg
.append("defs")
.append('pattern')
.attr('id', mapbg.id)
.attr('patternUnits', 'userSpaceOnUse')
.attr('width', map_width)
.attr('height', map_height)
.append("image")
.attr("xlink:href", im_url)
.attr('width', map_width)
.attr('height', map_height);
svg
.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", map_width)
.attr("height", map_height)
.attr("fill", mapbg);
let districts = svg
.append("g")
.attr('id', 'districts')
.selectAll("path")
.data(district_boundary_array[0].features)
.join("path")
.attr('class', 'district')
.attr("stroke-opacity", 0)
.attr('stroke', 'black')
.attr('stroke-width', 2)
.attr("stroke-linejoin", "round")
.attr("fill", 'none')
.attr("d", path);
districts
.on('mouseenter', function(d) {
districts
.attr('fill', 'white')
.style('stroke-width', 1)
.attr('fill-opacity', 0.8);
d3.select(this)
.style('stroke-width', 4)
.attr('fill', 'white')
.attr('fill-opacity', 0);
})
.on('mouseleave', function() {
districts
.attr('fill', 'white')
.attr('fill-opacity', 0)
.style('stroke-width', 2);
});
return svg.node();
}