in public/assets/maplibre/maplibre-gl-tile-boundaries.js [18:26]
function container(child, show) {
var container = document.createElement('div');
container.className = 'maplibregl-ctrl maplibregl-ctrl-group';
container.appendChild(child);
if (!show) {
container.style.display = 'none';
}
return container;
}