14 lines
388 B
JavaScript
14 lines
388 B
JavaScript
import "../css/index.css";
|
|
|
|
import MapManager from './MapManager.mjs';
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
|
|
window.addEventListener("load", (_event) => {
|
|
const map_manager = new MapManager();
|
|
map_manager.setup();
|
|
});
|