-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (49 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/images/icon.ico" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20,400,0,0" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LidarViewer 0.04</title>
<script type="module" crossorigin src="/main.js"></script>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div id="map"></div>
<div id="testing">
<p class="opacity-label">Zoom <span id="currentzoom"> </span>
<a class="opacity-label" id="testbutton" href="javascript:void(0);">[#]</a>
<a class="opacity-label" id="debugbutton" href="javascript:void(0);">[?]</a>
</p>
</div>
<div id="opacity-maps">
<label>
<span class="opacity-label">Maps</span>
<input id="opacity-input-maps" type="range" min="0" max="1" step="0.01" value="0.4" />
</label>
</div>
<div id="opacity-lidar">
<label>
<span class="opacity-label">Lidar</span>
<input id="opacity-input-lidar" type="range" min="0" max="1" step="0.01" value="1" />
</label>
</div>
<div id="opacity-satellite">
<label>
<span class="opacity-label">Satellite</span>
<input id="opacity-input-satellite" type="range" min="0" max="1" step="0.01" value="1" />
</label>
</div>
<!-- hidden form to clean up -->
<div id="measurestuff" class="hidden">
<select id="type" class="hidden">
<option value="LineString" class="hidden"></option>
<option value="Polygon" class="hidden"></option>
</select>
<input type="checkbox" id="segments" class="hidden"/>
<input type="checkbox" id="clear" class="hidden" checked />
</form>
</div>
</body>
</html>