fewcountries = {
let container = DOM.element('div', { style: `width:${width}px;height:${width/1.6}px` });
yield container;
let map = L.map(container).setView([35, 10], 2);
let PhilAreasLayer2 = L.geoJson(few, {
weight: 2,
color: "#432",
}).bindPopup(function (Layer) {
return '<a href="https://globalreportingcentre.org/" target="_blank"><h1> Test Title </h1><img src="https://upload.wikimedia.org/wikipedia/commons/4/4a/100x100_logo.png" width=100 height=100 /></a>';
})
.addTo(map);
map.fitBounds(PhilAreasLayer2.getBounds());
}