projector = {
Day;
Fullscreen;
let
ctx = target.getContext('2d'),
d = new Date(2018, 0, Day),
p = s => ("00" + s).slice(-2),
map = document.querySelector("#map"),
ice = document.querySelector("#ice"),
smos = document.querySelector("#smos"),
trans = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",
size = Fullscreen ? screen.height : width
;
mutable ymd = `${d.getUTCFullYear()}-${p(d.getUTCMonth() +1)}-${p(d.getUTCDate())}`;
ice.onerror = e => ice.src = trans;
smos.onerror = e => smos.src = trans;
ctx.drawImage(map, 0, 0, 1024, 1024);
ctx.drawImage(ice, 0, 0, 1024, 1024);
ctx.font = 'bold 24px monospace';
ctx.fillStyle = "#eee";
ctx.fillText(ymd, 20, 34);
ctx.strokeStyle = "red";
ctx.beginPath();
ctx.arc(mousePos.x, mousePos.y, 10, 0, 2 * Math.PI);
ctx.stroke();
return md`## ${ymd}`;
}