-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (67 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<title>Jetset Adventures: Visualize your plane trips</title>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🛫</text></svg>"
/>
<link rel="stylesheet" href="https://unpkg.com/picnic" />
<style>
body {
margin: 0;
}
#globeViz {
position: relative;
}
.floating-box {
position: absolute;
top: 10px;
right: 10px;
z-index: 1;
width: fit-content;
display: flex;
flex-direction: column;
}
.floating-box .row {
display: flex;
gap: 10px;
}
.floating-box .row > * {
flex: 1 1 0px;
}
/* Leave space for the dropdown image */
#tripFilter {
padding-right: 2em;
}
</style>
</head>
<body>
<div id="globeViz"></div>
<div class="floating-box">
<div class="row">
<select id="tripFilter">
<option value="">All Trips</option>
</select>
</div>
<div class="row">
<button id="toggleButton" class="success">
Enable Navigation Mode
</button>
</div>
<div class="row">
<button id="prevButton" disabled>Previous</button>
<button id="nextButton" disabled>Next</button>
</div>
</div>
<script src="https://unpkg.com/d3-dsv"></script>
<script src="https://unpkg.com/index-array-by"></script>
<script src="https://unpkg.com/globe.gl"></script>
<script src="https://unpkg.com/d3-array"></script>
<script src="https://unpkg.com/d3-geo"></script>
<script src="viz.js"></script>
<script>
initializeGlobeVisualization();
</script>
</body>
</html>