map = {
const context = DOM.context2d(width, height);
const path = d3.geoPath(projection, context);
context.beginPath(), path(sphere), context.fillStyle='#e6f7ff', context.fill();
context.beginPath(), path(sphere), context.strokeStyle = "#000", context.stroke();
context.beginPath(), path(land), context.fillStyle = '#e8d6c1', context.fill();
context.beginPath(), path(land), context.strokeStyle = "#666", context.stroke();
context.beginPath(), path(graticule), context.strokeStyle = "#bbb", context.stroke();
return context.canvas;
}