function make_tilegram() {
let div = d3
.create('div')
.style("width", `${map_width}px`)
.style("height", `${height}px`)
.style('overflow', 'hidden');
let svg = div
.append('svg')
.style('overflow', 'hidden')
.attr("viewBox", [0, 0, map_width, height]);
let map_obj, hex_data, boundary_data;
if (map_type == 'Together') {
map_obj = tiles;
hex_data = tiles;
boundary_data = tile_boundaries;
} else if (map_type == 'Broken') {
map_obj = broken_tiles;
hex_data = broken_tiles;
boundary_data = broken_tile_boundaries;
}
let proj = d3
.geoIdentity()
.reflectY(true)
.fitSize([map_width, height], map_obj);
let path = d3.geoPath().projection(proj);
let map = svg.append('g');
map
.selectAll("path.tile")
.data(hex_data.features)
.join("path")
.attr('class', 'tile')
.attr('d', path)
.style("fill", function(d) {
let fips = d.id;
let info = info_map.get(fips);
let p;
if (shade_by == "Votes") {
p = info.reps / max_reps;
return d3.interpolateBlues(p);
} else if (shade_by == "Vote change") {
p = (info.change + 2) / 4;
return d3.interpolateRdYlGn(p);
}
})
.attr('data-state', d => d.id)
.attr("stroke-width", '1px')
.attr("stroke", "white")
.attr("stroke-linejoin", "round");
map
.selectAll("path.boundary")
.data(boundary_data.features)
.join("path")
.attr('class', 'boundary')
.attr('d', path)
.style('fill', 'black')
.style("fill-opacity", 0)
.attr("stroke-width", '2px')
.attr("stroke", "black")
.attr("stroke-linejoin", "round")
.attr('data-state', d => d.id)
.on('pointerenter mouseenter', function(evt) {
let copy = this.cloneNode(true);
copy.setAttribute('stroke', 'black');
copy.setAttribute('stroke-width', '6px');
copy.setAttribute('class', 'temp');
copy.addEventListener('mouseleave', function() {
map.selectAll('.temp').remove();
});
let fips = d3.select(evt.target).attr('data-state');
let info = info_map.get(fips);
tippy(copy, {
allowHTML: true,
duration: 100,
maxWidth: 420,
theme: 'light',
content: `
<table>
<tr><th>State</th><th>Votes</th><th>Change</th></tr>
<tr>
<td><span class="td">${info.name}</span></td>
<td><span class="td">${info.reps + 2}</span></td>
<td><span class="td">${info.change}</span></td>
</tr>
</table>
`
});
map.append(() => copy);
});
return div.node();
}