-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Covid19 Submissions dashboard</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="container">
<nav class="navbar navbar-light bg-light mb-3">
<div class="d-flex align-items-center">
<div class="input-group mr-5">
<div class="input-group-prepend">
<label class="input-group-text" for="place">Place</label>
</div>
<select class="custom-select" id="place">
</select>
</div>
<div class="custom-control custom-checkbox mr-5">
<input type="checkbox" class="custom-control-input" id="logOption">
<label class="custom-control-label" for="logOption">Log</label>
</div>
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="dydxOption">
<label class="custom-control-label" for="dydxOption">dy/dx</label>
</div>
</div>
</nav>
<div class="row mb-5">
<div class="col-12 col-md-4">
<div class="list-group submissions"></div>
</div>
<div class="col-12 col-md-8" id="chart" style="height: 500px;"></div>
</div>
<div class="map-navigation">
<div>
<h3 class="text-center"></h3>
</div>
<div><input type="range" id="mapIndexSelector" step="1" style="width: 100%;"/></div>
<div>
<button id="play" class="btn btn-primary">Play</button>
</div>
</div>
<div id="map" class="mb-5" style="height: 500px;"></div>
</div>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="./scripts/utils.js"></script>
<script src="./scripts/chart.js"></script>
<script src="./scripts/submissions.js"></script>
<script src="./scripts/map.js"></script>
<script src="./scripts/app.js"></script>
</body>
</html>