2019-01-17 13:56:25 +00:00
|
|
|
"use strict";
|
|
|
|
|
2019-01-17 14:07:31 +00:00
|
|
|
// Import leaflet, but some plugins require it to have the variable name 'L' :-/
|
|
|
|
import L from 'leaflet';
|
|
|
|
import 'leaflet-fullscreen';
|
2019-01-17 13:56:25 +00:00
|
|
|
|
|
|
|
import Config from './Config.mjs';
|
2019-01-17 16:13:27 +00:00
|
|
|
import LayerDeviceMarkers from './LayerDeviceMarkers.mjs';
|
2019-01-17 17:31:59 +00:00
|
|
|
import LayerHeatmap from './LayerHeatmap.mjs';
|
2019-01-18 21:25:30 +00:00
|
|
|
import UI from './UI.mjs';
|
2019-01-17 13:56:25 +00:00
|
|
|
|
2019-01-19 22:04:51 +00:00
|
|
|
class MapManager {
|
2019-01-17 13:56:25 +00:00
|
|
|
constructor() {
|
2019-01-26 22:00:37 +00:00
|
|
|
console.log(Config);
|
2019-01-17 13:56:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setup() {
|
2019-01-17 16:13:27 +00:00
|
|
|
// Create the map
|
2019-01-17 14:07:31 +00:00
|
|
|
this.map = L.map("map", {
|
|
|
|
fullscreenControl: true
|
|
|
|
});
|
2019-01-17 13:56:25 +00:00
|
|
|
this.map.setView(Config.default_location, Config.default_zoom);
|
|
|
|
|
2019-01-17 16:13:27 +00:00
|
|
|
// Add the OpenStreetMap tile layer
|
2019-01-20 23:41:45 +00:00
|
|
|
this.layer_openstreet = L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
|
2019-01-17 13:56:25 +00:00
|
|
|
id: "openstreetmap",
|
|
|
|
maxZoom: 19,
|
2019-01-17 13:58:56 +00:00
|
|
|
attribution: "© <a href='https://www.openstreetmap.org/copyright'>OpenStreetMap contributors</a>"
|
2019-01-17 13:56:25 +00:00
|
|
|
}).addTo(this.map);
|
2019-01-17 16:13:27 +00:00
|
|
|
|
2019-01-21 11:48:29 +00:00
|
|
|
this.map.attributionControl.addAttribution("Data: <a href='https://connectedhumber.org/'>Connected Humber</a>");
|
|
|
|
this.map.attributionControl.addAttribution("<a href='https://github.com/ConnectedHumber/Air-Quality-Web/'>Air Quality Web</a> by <a href='https://starbeamrainbowlabs.com/'>Starbeamrainbowlabs</a>");
|
|
|
|
|
2019-01-17 16:13:27 +00:00
|
|
|
// Add the device markers
|
|
|
|
console.info("[map] Loading device markers....");
|
2019-01-17 17:31:59 +00:00
|
|
|
this.setup_device_markers().then(() => {
|
2019-01-17 16:13:27 +00:00
|
|
|
console.info("[map] Device markers loaded successfully.");
|
2019-01-17 16:38:15 +00:00
|
|
|
|
|
|
|
// Display a layer controller
|
|
|
|
this.setup_layer_control();
|
2019-01-17 16:13:27 +00:00
|
|
|
});
|
2019-01-17 16:38:15 +00:00
|
|
|
|
2019-01-17 17:31:59 +00:00
|
|
|
// Add the heatmap
|
|
|
|
console.info("[map] Loading heatmap....");
|
|
|
|
this.setup_heatmap().then(() => {
|
|
|
|
console.info("[map] Heatmap loaded successfully.");
|
|
|
|
});
|
|
|
|
|
2019-01-19 13:14:00 +00:00
|
|
|
this.ui = new UI(Config, this);
|
|
|
|
this.ui.setup().then(() => console.log("[map] Settings initialised."));
|
2019-01-17 17:31:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async setup_device_markers() {
|
|
|
|
this.device_markers = new LayerDeviceMarkers(this.map);
|
|
|
|
await this.device_markers.setup();
|
|
|
|
}
|
|
|
|
|
|
|
|
async setup_heatmap() {
|
|
|
|
this.heatmap = new LayerHeatmap(this.map);
|
|
|
|
|
|
|
|
// TODO: Use leaflet-timedimension here
|
|
|
|
// TODO: Allow configuration of the different reading types here
|
|
|
|
|
2019-01-19 14:31:46 +00:00
|
|
|
this.heatmap.update_data(new Date(new Date-10*60), "PM25");
|
2019-01-17 16:38:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setup_layer_control() {
|
|
|
|
this.layer_control = L.control.layers({
|
|
|
|
// Base layer(s)
|
|
|
|
"OpenStreetMap": this.layer_openstreet
|
|
|
|
}, { // Overlay(s)
|
2019-01-17 17:31:59 +00:00
|
|
|
"Devices": this.device_markers.layer,
|
|
|
|
// TODO: Have 1 heatmap layer per reading type?
|
|
|
|
"Heatmap": this.heatmap.layer
|
2019-01-17 16:38:15 +00:00
|
|
|
}, { // Options
|
2019-01-17 16:39:47 +00:00
|
|
|
|
2019-01-17 16:38:15 +00:00
|
|
|
});
|
|
|
|
this.layer_control.addTo(this.map);
|
2019-01-17 13:56:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-20 00:17:54 +00:00
|
|
|
export default MapManager;
|