-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1.41 KB
/
index.html
File metadata and controls
47 lines (41 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>LoSER</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="topbar">
<div id="statusText">Select point 1</div>
<div class="pointRow">
<span id="point1">Selected Point 1:</span>
<span id="elevation1Note"></span>
<input type="text" id="elevation1Input" class="elevationTextBox" value="0">
</div>
<div class="pointRow">
<span id="point2">Selected Point 2:</span>
<span id="elevation2Note"></span>
<input type="text" id="elevation2Input" class="elevationTextBox" value="0">
</div>
<button id="clearPointsButton">Clear Selected Points</button>
<button id="interpolateButton">Check visibility!</button>
<label for="slider" id="sliderLabel"># of points to interpolate:</label>
<input type="range" id="slider" min="0" max="500" value="100" oninput="output.textContent = this.value" disabled>
<span id="output">50</span>
</div>
<div id="mainContent">
<div id="map"></div>
<div id="sidePanel">
<h3>Results</h3>
<p>Visibility info will go here.</p>
</div>
</div>
<script src="app.js"></script>
<script
async
defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVVih2K4xSjL_S0YT5sTXJuBKpjKi_MxY&callback=initMap">
</script>
</body>
</html>