map = htl.html`<svg viewBox="0 0 ${width} ${height}" style="display: block;">
<path d="${path(outline)}" fill="#fff"></path>
<path d="${path(land)}" fill="#eee" stroke="#aaa"></path>
<path d="${path(borders)}" fill="none" stroke="#aaa"></path>
<path d="${path(outline)}" fill="none" stroke="#aaa"></path>
<path d="${path({type: "LineString", coordinates: tropicOfCancer})}" stroke-width="3" stroke="#0aa" ></path>
<path d="${path({type: "LineString", coordinates: lowResCancer})}" stroke-width="3" stroke="#a00" fill="none"></path>
<path d="${path({type: "LineString", coordinates: tropicOfCapricorn})}" stroke-width="3" stroke="#0aa"></path>
</svg>`