map = {
const container = DOM.element('div', { style: `width:${width}px;height:${width/1.6}px` });
yield container;
const location = await getLocation;
const map = L.map(container).setView([location.coords.latitude, location.coords.longitude], 16);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
L.marker([location.coords.latitude, location.coords.longitude]).addTo(map);
}