${site.name}
`
if (site.description) {
popupContent += `
${site.description}
`
}
if (site.address) {
popupContent += `
${site.address}
`
}
popupContent += `
${site.latitude.toFixed(4)}, ${site.longitude.toFixed(4)}
`
if (site.device_count > 0) {
popupContent += `
${site.device_count} device${site.device_count !== 1 ? 's' : ''}
`
}
popupContent += `
`
marker.bindPopup(popupContent)
this.markers.addLayer(marker)
bounds.extend([site.latitude, site.longitude])
}
})
// Add markers to map
this.markers.addTo(this.map)
// Fit map to show all markers
if (bounds.isValid()) {
this.map.fitBounds(bounds, { padding: [20, 20] })
}
}
}
const csrfToken = document.querySelector