-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (35 loc) · 979 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="initial-scale=1, maximum-scale=1,user-scalable=no"
/>
<title>
PRCR-WCPSS Playground Gap Service Analysis
</title>
<link
rel="stylesheet"
href="https://js.arcgis.com/4.18/esri/themes/light/main.css"
/>
<script src="https://js.arcgis.com/4.18/"></script>
<link rel="stylesheet" href="./style.css">
<script src="./app.js"></script>
</head>
<body>
<div id="appContainer">
<div id="viewDiv"></div>
<div id="tableContainer" class="container">
<div id="tableDiv"></div>
</div>
<div id="mainDiv" class="esri-widget">
<label class="switch">
<input id="checkboxId" type="checkbox" checked="yes" />
<span class="slider round"></span>
</label>
<label class="labelText" id="labelText">Hide table</label>
</div>
</div>
</body>
</html>