createMap = function(L) {
const container = html`<div style="height:500px;">`;
const map = L.map(container).setView([46.99758, 2.81834], 5);
L.tileLayer(
"https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}.png",
{
attribution:
'© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors © <a href="https://carto.com/attributions">CARTO</a>',
subdomains: "abcd",
maxZoom: 19
}
).addTo(map);
container.value = map;
return container;
}