denHaagMap = {
let s = `width:${width}px;height:${width/1.6}px;position: relative;`
let container = html`<div id="container" style="+s+"><div id="map"></div><div id="sidepanel"><table class="reusable-legend"> </table> </div></div>`
yield container;
let map = L.map('map').setView([BSN_locations.Vlaskamp[1],BSN_locations.Vlaskamp[0]], 13);
TileLayer.addTo(map);
HeatLayer.addTo(map);
}