-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>[blu:]tour</title>
<link rel="stylesheet" href="blu.css">
</style>
<!-- Importing Calcite -->
<link rel="stylesheet" href="https://s3-us-west-1.amazonaws.com/patterns.esri.com/files/calcite-web/1.0.0-rc.7/css/calcite-web.min.css">
<script src="https://s3-us-west-1.amazonaws.com/patterns.esri.com/files/calcite-web/1.0.0-rc.7/js/calcite-web.min.js"></script>
<link rel="stylesheet" href="https://js.arcgis.com/4.5/esri/css/main.css">
<link rel="stylesheet" href="https://dojotoolkit.org/reference-guide/1.10/_static/js/dijit/themes/claro/claro.css"> <!-- https://js.arcgis.com/4.4/dijit/themes/claro/claro.css"> -->
<script>
var locationPath = location.pathname.replace(/\/[^\/]+$/, "/");
window.dojoConfig = {
packages: [
{
name: "app",
location: locationPath + "app"
}, {
name: "react-raw-html",
location: "./node_modules/",
main: "react-raw-html.min"
}
]
};
</script>
<script src="https://js.arcgis.com/4.5/"></script>
</head>
<body>
<!-- <div id="loader" class="loader is-active padding-leader-3 padding-trailer-3">
<div class="loader-bars"></div>
<div class="loader-text">Loading...</div>
</div> -->
<div id="viewDiv"></div>
<mark class="label label-yellow">This thing does not work in Internet Explorer.</mark>
<script>require(["app/main"]);</script>
</body>
</html>