This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
53 lines (43 loc) · 1.76 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<!-- End Responsive -->
<link rel=icon href=assets/favicon.ico sizes="32x32" type="image/vnd.microsoft.icon">
<link id="esri-stylesheet" rel="stylesheet" href="https://js.arcgis.com/4.18/esri/themes/light/main.css">
<link type="text/css" rel="stylesheet" href="styles/main.css">
<script>
if (navigator && navigator.userAgent) {
var match = /\b(MSIE |Trident.*?rv:|Edge\/)(\d+)/.exec(navigator.userAgent);
if (match && match.length && match.length === 3) {
const version = parseInt(match[2]);
if (version <= 19) {
document.location = "../../shared/unsupported/index.html";
}
}
}
</script>
<script src="./app/dojo.js"></script>
<script type="module" crossorigin="use-credentials"
src="../node_modules/@esri/calcite-components/dist/calcite/calcite.esm.js">
</script>
<script nomodule="" src="../node_modules/@esri/calcite-components/dist/calcite/calcite.js"></script>
<script src="./app/moment.js"></script>
<script src="https://js.arcgis.com/4.18/"></script>
<script>
require(["Application/init"]);
</script>
</head>
<body class="configurable-application--loading">
<header id="header" class="hide"></header>
<div id="splitContainer" class="configurable-application__view-container view-parent-container">
<div id="viewContainer" class="container"></div>
<div id="mapInset" class="container inset-map hide"></div>
</div>
</body>
</html>