mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-14 05:13:00 +00:00
Starbeamrainbowlabs
278adb8468
We still need to write some masty rendering code, and lots of other connecting glue
25 lines
748 B
JavaScript
25 lines
748 B
JavaScript
"use strict";
|
|
|
|
import '../css/main.css';
|
|
// import '../../node_modules/leaflet-timedimension/dist/leaflet.timedimension.control.css';
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
import MapManager from './MapManager.mjs';
|
|
|
|
import iso8601 from 'iso8601-js-period';
|
|
|
|
window.addEventListener("load", function(_event) {
|
|
window.map_manager = new MapManager();
|
|
window.map_manager.setup();
|
|
});
|
|
|
|
window.nezasa = {
|
|
iso8601
|
|
};
|
|
|
|
// This needs to be here rather than in onload, because we need to ensure it's loaded now
|
|
console.log("iso8601-js-period namespace: ", window.nezasa);
|
|
|
|
// Ensure terser doesn't tree-shake iso8601-js-period
|
|
console.debug(`iso8601-js-period ${nezasa.iso8601.Period?"is":"is not"} loaded.`);
|