map = {
const svg = d3.create('svg').attr('viewBox', [0, 0, width, height]);
svg
.append('path')
.datum(border)
.attr('fill', 'white')
.attr('stroke', 'black')
.attr('d', path);
svg
.append('g')
.selectAll('path')
.data(topojson.feature(es, es.objects[active]).features)
.join('path')
.attr('fill', 'none')
.attr('stroke', 'black')
.attr('d', path);
svg
.append('path')
.attr('fill', 'none')
.attr('stroke', 'black')
.attr('d', projection.getCompositionBorders());
return svg.node();
}