generated from agrc/atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (86 loc) · 2.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html lang="en">
<head>
<link rel="shortcut icon" href="favicon.ico" />
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="quickly find bikeways in Utah" />
<title>Utah Bikeways Map</title>
<!-- These are links rather than imported so that we can dynamically disable/enable -->
<link
id="arcgis-dark-theme"
disabled
rel="stylesheet"
href="/esri-core/assets/esri/themes/dark/main.css"
/>
<link
id="arcgis-light-theme"
rel="stylesheet"
href="/esri-core/assets/esri/themes/light/main.css"
/>
</head>
<body class="calcite-mode-auto">
<calcite-loader
class="h-full p-0"
label="loading application"
scale="l"
></calcite-loader>
<calcite-modal id="about-modal" aria-labelledby="About this map">
<div slot="header">About This Map</div>
<div slot="content">lorum ipsum</div>
</calcite-modal>
<calcite-shell content-behind hidden>
<calcite-navigation slot="header">
<calcite-navigation-logo
slot="logo"
heading="Utah Bikeways Map"
description="description text"
></calcite-navigation-logo>
<calcite-action
id="about-button"
icon="information"
text="About this map"
scale="l"
slot="content-end"
></calcite-action>
</calcite-navigation>
<div class="w-full h-full" id="viewDiv"></div>
<calcite-panel slot="footer">
<calcite-block
class="m-0 border-none"
id="filter-block"
collapsible
open
heading="Route Types"
description="description text"
>
<calcite-icon scale="s" icon="filter" slot="icon"></calcite-icon>
<calcite-switch
class="self-center mx-3"
id="filter-switch"
scale="l"
slot="control"
></calcite-switch>
<div id="route-types-controls">
<my-checkbox label="Paved Path"></my-checkbox>
<my-checkbox label="Protected Bike Lane"></my-checkbox>
<my-checkbox label="Bike Lane"></my-checkbox>
<my-checkbox label="Marked Route"></my-checkbox>
<my-checkbox label="Unmarked Route"></my-checkbox>
</div>
<div class="hidden" id="traffic-stress-controls">
<my-checkbox label="Most Comfortable"></my-checkbox>
<my-checkbox label="Comfortable"></my-checkbox>
<my-checkbox label="Less Comfortable"></my-checkbox>
<my-checkbox label="Higher Traffic"></my-checkbox>
<my-checkbox label="Traffic Lights"></my-checkbox>
</div>
</calcite-block>
</calcite-panel>
</calcite-shell>
</body>
<script type="module" src="/main.js"></script>
</html>