Peta Interaktif Desa Desa Cungkup
Pemetaan fasilitas publik, infrastruktur, titik lokasi penting, dan lokasi proyek pembangunan.
this.map.removeLayer(m));
this.markers = [];
this.allData.forEach(item => {
if (this.selectedCategories.includes(item.kategori)) {
const marker = L.marker([item.lat, item.lng]).addTo(this.map);
const routeUrl = `https://www.google.com/maps/dir/?api=1&destination=${item.lat},${item.lng}`;
const popupContent = ``;
marker.bindPopup(popupContent);
this.markers.push(marker);
}
});
},
toggleCategory(cat) {
if (this.selectedCategories.includes(cat)) {
this.selectedCategories = this.selectedCategories.filter(c => c !== cat);
} else {
this.selectedCategories.push(cat);
}
this.renderMarkers();
}
}"
x-init="initMap()">