mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-22 06:23:01 +00:00
Remove debugging calls
This commit is contained in:
parent
a3cc45a44c
commit
7864051443
1 changed files with 0 additions and 5 deletions
|
@ -15,21 +15,16 @@ class LayerDeviceMarkers {
|
||||||
// Create a new clustering layer
|
// Create a new clustering layer
|
||||||
this.layer = L.markerClusterGroup();
|
this.layer = L.markerClusterGroup();
|
||||||
|
|
||||||
console.log("Loading device list");
|
|
||||||
// Fetch the device list
|
// Fetch the device list
|
||||||
let device_list = JSON.parse(await GetFromUrl(
|
let device_list = JSON.parse(await GetFromUrl(
|
||||||
`${Config.api_root}?action=list-devices&only-with-location=yes`
|
`${Config.api_root}?action=list-devices&only-with-location=yes`
|
||||||
));
|
));
|
||||||
|
|
||||||
console.log("Device list loaded");
|
|
||||||
|
|
||||||
// Add a marker for each device
|
// Add a marker for each device
|
||||||
for (let device of device_list) {
|
for (let device of device_list) {
|
||||||
this.add_device_marker(device);
|
this.add_device_marker(device);
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("Device markers created");
|
|
||||||
|
|
||||||
// Display this layer
|
// Display this layer
|
||||||
this.map.addLayer(this.layer);
|
this.map.addLayer(this.layer);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue