mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-10-31 03:23:01 +00:00
25 lines
749 B
JavaScript
25 lines
749 B
JavaScript
"use strict";
|
|
|
|
import '../css/index.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.`);
|