This commit is contained in:
2026-05-04 13:19:39 +02:00
parent f5184be676
commit bf10bc1f4b
5 changed files with 269 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
function toggleSidebar() {
document.getElementById('sidebar').classList.toggle('open');
}
function showLayer(layerId) {
document.querySelectorAll('.layer').forEach(layer => {
layer.classList.remove('active');
});
document.getElementById('layer-' + layerId).classList.add('active');
toggleSidebar();
}
async function fetchData() {
}