map = {
const context = this ? this.getContext("2d") : DOM.context2d(size, size);
const render = function() {
const path = d3.geoPath(projection, context);
const rotate = projection.rotate();
const backpath = d3.geoPath(backprojection, context);
const frontColor = d3.hcl('#a9c681');
const backColor = d3.hcl(frontColor);
backColor.l += 15;
backColor.c -= 30;
context.clearRect(0, 0, width, width);
context.beginPath(), path({type:"Sphere"}),
context.fillStyle = '#fcfcfc', context.fill();
context.beginPath(), backpath(countries),
context.fillStyle = backColor, context.fill();
context.beginPath(), backpath(d3.geoGraticule()()),
context.lineWidth = .1, context.strokeStyle = '#aaa', context.stroke();
context.beginPath(), path(d3.geoGraticule()()),
context.lineWidth = .1, context.strokeStyle = '#111', context.stroke();
context.beginPath(), path(countries),
context.globalAlpha = 0.9,
context.lineWidth = 1, context.strokeStyle = frontColor.darker(1), context.stroke(),
context.fillStyle = frontColor, context.fill(),
context.globalAlpha = 1;
context.beginPath(), path({type: "Sphere"}),
context.lineWidth = .1, context.strokeStyle = '#111', context.stroke();
context.beginPath(), path(selectedData);
context.lineWidth = 1, context.strokeStyle = selectedColor, context.stroke()
context.beginPath(), path({type: 'Point', coordinates: selectedPlace});
context.fillStyle = "red", context.fill()
}
context.canvas.inertia = d3.geoInertiaDrag(d3.select(context.canvas), null, projection);
const timer = d3.timer(function() {
var rotate = projection.rotate();
rotate[0] += velocity * 20;
projection.rotate(rotate);
backprojection.rotate(rotate);
render();
});
invalidation.then(() => (timer.stop(), timer = null, d3.select(context.canvas).on(".drag", null)));
return context.canvas;
}