-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdepthprofil.html
More file actions
117 lines (95 loc) · 3.16 KB
/
depthprofil.html
File metadata and controls
117 lines (95 loc) · 3.16 KB
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
<!DOCTYPE html>
<html>
<!-- php -S localhost:8000 -->
<!-- php -S 0.0.0.0:8888 -->
<!-- netstat -ano | findstr :8000 -->
<!-- taskkill /PID . /F -->
<!-- curl -sl -I http://localhost:8086/ping -->
<head>
<title>HyFiVe</title>
<meta charset="UTF-8">
<meta content="utf-8" http-equiv="encoding">
<!-- Load jQuery to read data -->
<script src="./lib/jquery-3.6.0.js"></script>
<!-- Load D3 to draw data graphs -->
<script src="./lib/d3.js"></script>
<script src="./lib/d3.min.js"></script>
<script src="./js/jsquery.js" type="module"></script>
<!-- Load node js and query api scripts -->
<!-- Load leaflet to draw map -->
<link rel="stylesheet" href="./css/leaflet.css" />
<link rel="stylesheet" type="text/css" href="./css/hyfive.css">
<link rel="stylesheet" href="./css/hyfive.css" />
<script src="./lib/leaflet.js"></script>
<!-- Load own scripts -->
<script src="./js/config.js" type="module"></script>
<script src="./js/map.js" type="module"></script>
<script src="./js/jsquery.js" type="module"></script>
<script src="./js/depthchart.js" type="module"></script>
<script src="./js/maindepth.js" type="module"></script>
<script src="./js/ui.js" type="module"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<style>
</style>
</head>
<body>
<div id="navbar">
<img src="./assets/ProjectLogo.png" alt="ProjectLogo" id="logo"></img>
<div id="navbar-right">
<a href="./index.html">Horizontal Profile</a>
<a class="active" href="./depthprofil.html">Vertical Profile</a>
<a href="./manual.html">Manual</a>
<a id="darkmode">Darkmode</a>
</div>
</div>
<div id="whole">
<!-- <button onclick="create()">JSON request</button> -->
<p><b> From : <input type="date" name="field1" id="field1" />
To : <input type="date" name="field2" id="field2" />
<input type="button" defer id="reload" value="Show" />
</b></p>
<div class="row">
<div class="row" id="row2">
<div class="column2">
<nav id="UList">
<ul id="list">
</ul>
</nav>
<div id="idselectlabel" class="selected" align=center>
Select an ID
</div>
<!-- toggles -->
<div id = "switch2">
<ul >
<li>
<input id="s1" type="checkbox" class="switch" >
<label for="s1">Whole cast</label>
</li>
<li>
<input id="s2" type="checkbox" class="switch">
<label for="s2">Down cast</label>
</li>
<li>
<input id="s3" type="checkbox" class="switch">
<label for="s3">Horizontal cast</label>
</li>
<li>
<input id="s4" type="checkbox" class="switch">
<label for="s4">Up cast</label>
</li>
</ul>
</div>
</div>
<div class="column2">
<div id="map"></div>
</div>
</div>
<div class="column">
<div id="my_dataviz"></div>
</div>
</div>
<script>
</script>
</body>
</html>