canvas = {
const width = mapSize
const height = mapSize
const margin = 20
const ctx = DOM.context2d(width, height);
ctx.fillStyle = "#111";
ctx.fillRect(0, 0, width, height);
const x = d3.scaleLinear()
.domain(xExtent)
.range([margin, width - margin])
const y = d3.scaleLinear()
.domain(yExtent)
.range([height - margin, margin])
const opacity = pointOpacity
ctx.fillStyle = `rgb(${rgb},${rgb},${rgb},${opacity})`
ctx.globalCompositeOperation = "screen"
let i, s, len;
const rw = pointSize
len = points.length;
for(i = 0; i < len; i++) {
s = points[i]
ctx.beginPath()
ctx.arc(x(s.x), y(s.y), rw, 0, 2*Math.PI)
ctx.fill()
}
return ctx.canvas;
}