-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (41 loc) · 1.56 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./assets/images/icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>remote sensing</title>
<link rel="stylesheet" type="text/css" href="./src/styles/style.css">
<!-- <base href="/remotesensing/"> -->
</head>
<body>
<!-- three.js map -->
<!-- legend elements -->
<button id="info-button">legend</button>
<a href="./about.html">
<button id="about-button">?</button>
</a>
<div id="info-container" class="hidden">
<ul>
<div id="legend-controls">
<!-- legend items added here in js -->
</div>
</ul>
<span id="hide-legend" class="small-text">close</span>
</div>
<div id="gfx" class="background crosshair">
<div id="three-container" class="pixelated">
<canvas id="canvas" width="800" height="480" style="background:black;"></canvas>
<button id="audioControl" style="display:none;">Unmute</button>
<!-- <div id="stats"></div> -->
</div>
</div>
<div id="fm-channel-controls">
<div id="fm-channel-display">FM channel: 201</div>
<input type="range" id="fm-channel-slider" min="201" max="300" step="1" value="201">
<div id="fm-frequency-display" style="position: absolute; bottom: -5vh;">88.1 MHz</div>
<!-- <p id="fm-channel-display">88.1 MHz</p> -->
</div>
<div id="latLonDisplay"></div>
<script type="module" src="./src/js/main.js" defer></script>
</body>
</html>