-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathentry.js
More file actions
32 lines (27 loc) · 868 Bytes
/
Copy pathentry.js
File metadata and controls
32 lines (27 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import globeGif from "./lib/Styles/globe.gif";
import "./lib/Styles/loader.css";
async function loadMainScript() {
return import("terriajs/lib/Core/prerequisites")
.then(() => import("./index"))
.then(({ default: terriaPromise }) => terriaPromise);
}
function createLoader() {
const loaderDiv = document.createElement("div");
loaderDiv.classList.add("loader-ui");
const loaderGif = document.createElement("img");
loaderGif.src = globeGif;
loaderDiv.appendChild(loaderGif);
loaderDiv.style.backgroundColor = "#383F4D";
document.body.appendChild(loaderDiv);
loadMainScript()
.catch((_err) => {
// Ignore errors and try to show the map anyway
})
.then(() => {
loaderDiv.classList.add("loader-ui-hide");
setTimeout(() => {
document.body.removeChild(loaderDiv);
}, 2000);
});
}
createLoader();