2019-07-19 14:36:21 +00:00
|
|
|
import "../css/index.css";
|
|
|
|
|
|
|
|
import MapManager from './MapManager.mjs';
|
|
|
|
|
2019-07-22 14:46:07 +00:00
|
|
|
/*
|
|
|
|
* Portions of this client-side web interface are taken from Air-Quality-Web: https://github.com/ConnectedHumber/Air-Quality-Web
|
|
|
|
* Proof I wrote that project is available upon request of course.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2019-07-19 14:36:21 +00:00
|
|
|
window.addEventListener("load", (_event) => {
|
|
|
|
const map_manager = new MapManager();
|
|
|
|
map_manager.setup();
|
|
|
|
});
|