-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·51 lines (46 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>A11y Map</title>
<link rel="stylesheet" href="https://s3-us-west-1.amazonaws.com/patterns.esri.com/files/calcite-web/1.0.0-rc.8/css/calcite-web.min.css">
<link rel="stylesheet" href="https://js.arcgis.com/4.8/esri/css/main.css">
<link rel="stylesheet" href="css/main.css">
<script>
var locationPath = location.pathname.replace(/\/[^\/]+$/, "");
window.dojoConfig = {
has: {
"esri-featurelayer-webgl": 1
},
packages: [{
name: "app",
location: locationPath + "/app"
}]
}
</script>
<script src="https://js.arcgis.com/4.8"></script>
</head>
<body>
<div id="viewDiv" role="application">
</div>
<div aria-describedby="intro" id="liveViewInfo" class="hidden live-info" role="navigation">
<div aria-live="polite" role="status">
<p id="intro"></p>
</div>
<div id="liveArea" aria-atomic="true" aria-live="polite">
<div class="directions-info">
<span id="dir"></span>
</div>
<div id="details" class="detail-info"></div>
</div>
</div>
<button role="main" id="keyboard" class="hidden esri-widget esri-component esri-widget-button keyboard-btn esri-icon-announcement"
aria-label="Enable keyboard navigation">
</button>
<script>
require(["app/main"]);
</script>
</body>
</html>