{
let svg = d3.select(DOM.svg(width, height));
svg.style('background', 'black');
let image_g = svg.append('g').attr('id', 'image_g');
let paths_g = svg.append('g').attr('id', 'paths_g');
let geoGenerator = d3.geoPath().projection(projection);
image_g
.selectAll('path')
.data(old_series_polygons.features)
.join('path')
.attr('d', geoGenerator)
.attr('fill', 'rgb(245,237,231)');
image_g
.selectAll('image')
.data(tiles)
.join('image')
.attr('xlink:href', d => url(d[0], d[1], d[2]))
.attr('onerror', "this.style.display='none'")
.attr('x', d => Math.round((d[0] + tiles.translate[0]) * tiles.scale) - 0.5)
.attr('y', d => Math.round((d[1] + tiles.translate[1]) * tiles.scale) - 0.5)
.attr('width', tiles.scale + 1)
.attr('height', tiles.scale + 1)
.attr('id', d => d);
paths_g
.selectAll('path')
.data(old_series_polygons.features)
.join('path')
.attr('d', geoGenerator)
.attr('stroke', 'cyan')
.attr('stroke-width', 0.5)
.attr('fill', 'none');
return svg.node();
}