This repository has been archived by the owner on Oct 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (155 loc) · 4.5 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Hydrant Dashboard | City of Detroit</title>
<meta
name="description"
content="Dashboard to monitor hydrant survelling in the City of Detroit."
/>
<meta name="author" content="Edgar Montes" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<link rel="shortcut icon" type="image/png" href="img/favicon.ico" />
<link
href="https://api.mapbox.com/mapbox-gl-js/v0.39.1/mapbox-gl.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v2.0.1/mapbox-gl-geocoder.css"
type="text/css"
/>
<link href="scss/styles.scss" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
</head>
<body>
<section id="initial-loader-overlay" class="active">
<article>
<div>
<div class="loader">
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__ball"></div>
</div>
<p>LOADING</p>
</div>
</article>
</section>
<section id="alert-overlay">
<article>
<span class="close">x</span>
<div></div>
</article>
</section>
<section id="drill-down-overlay">
<article>
<span class="close">x</span>
<div></div>
</article>
</section>
<input type="checkbox" id="menu" />
<label for="menu" class="menu">
<span></span> <span></span> <span></span> MENU
</label>
<nav class="nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<header>
<section id="logo">
<article>
<img src="logo-220x220.jpg" alt="City of Detroit" />
</article>
</section>
<section class="filter">
<article>
<label for="start-date">
START
<input
id="start-date"
type="text"
name="start-date"
value=""
placeholder="Enter starting date"
/>
</label>
</article>
</section>
<section class="filter">
<article>
<label for="end-date">
END
<input
id="end-date"
type="text"
name="end-date"
value=""
placeholder="Enter end date"
/>
</label>
</article>
</section>
<section class="filter">
<article>
<label for="company">
COMPANY
<input
id="company"
type="text"
list="company-list"
name="company"
placeholder="Enter company"
value=""
/>
<datalist id="company-list"> </datalist>
</label>
</article>
</section>
<section class="filter">
<article><button id="query">FILTER</button></article>
</section>
</header>
<main>
<section class="data-panel">
<section class="breadcrumbs">
<article class="inner">
<ul class="cf">
<li>
<a href="#"><span>1</span><span>City</span></a>
</li>
</ul>
</article>
</section>
<section class="top-numbers">
<article>
<div>INSPECTED <br /><span id="surveyed-num">0</span></div>
</article>
<article>
<div>NOT INSPECTED <br /><span id="not-surveyed-num">0</span></div>
</article>
<article>
<div>INOPERABLE <br /><span id="not-working-num">0</span></div>
</article>
</section>
<section class="tabular-data">
<article class="companies-snapshots active"></article>
<article class="tabular-titles"></article>
<article class="tabular-body"></article>
<article class="blocks-body"></article>
</section>
</section>
<section class="map-panel"><article id="map"></article></section>
</main>
<script src="index.js" type="module"></script>
</body>
</html>