{
const context = DOM.context2d(size.width, size.height)
const path2154 = d3.geoPath(proj_e4326_to_map_e2154, context)
context.strokeStyle = '#ccc'
context.fillStyle = '#FEEDAB'
a_dep_s.features.forEach( d => path2154(d) )
context.fill()
context.stroke()
let a_fra = topojson.merge(a_dep_topo_s, a_dep_topo_s.objects.a_dep2021_topo.geometries)
context.strokeStyle = 'black'
context.beginPath()
path2154(a_fra)
context.stroke()
return context.canvas
}