-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (114 loc) · 3.85 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
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
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Navex</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="body-content">
<div>
<h1 class="center-text">Project Navex</h1>
<p class="instructions">
Generate your Navigation Data Sheet with a few simple clicks...
</p>
<div class="dropdown-container">
<div class="dropdown">
<div class="select">
<span class="selected">Lorong Asrama</span>
<div class="caret"></div>
</div>
<ul class="menu">
<li>Ama Keng</li>
<li>Jalan Bahar</li>
<li>Jalan Bathera</li>
<li class="active">Lorong Asrama</li>
<li>Lower Mandai</li>
<li>Marsling</li>
<li>Tekong</li>
</ul>
</div>
</div>
<div class="map-buttons">
<div class="map-toggle">
<input
type="radio"
name="map-radio-group"
id="roadmap"
value="roadmap"
checked
/>
<label for="roadmap" class="roadmap">Roadmap</label>
<input
type="radio"
name="map-radio-group"
id="hybrid"
value="hybrid"
/>
<label for="hybrid" class="hybrid">Tactical</label>
</div>
</div>
<div id="map"></div>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBP9pYHfZKn0Ts4xt7eV89X-3YH6ohAKJQ&callback=initMap&v=weekly"
defer
></script>
<p class="instructions" id="mgr-input-result">
Or manually input your points.
</p>
<div id="mgr-input">
<div id="mgr-input-group">
<input
type="tel"
maxlength="8"
placeholder="Enter your MGR"
id="mgr-input-box"
/>
<button id="mgr-input-button" onclick="addUserMGR()">Plot</button>
</div>
</div>
<p class="instructions">Set distance intervals.</p>
<div class="intervals">
<div class="radiogroup">
<input
type="radio"
name="radio-group"
id="day"
value="day"
checked
/>
<label class="radio-left" for="day">Day (100m)</label>
<input type="radio" name="radio-group" id="night" value="night" />
<label class="radio-right" for="night">Night (50m)</label>
</div>
</div>
<p class="instructions">Clear Map or Generate NDS.</p>
<div class="follow-up-action">
<button id="clear" onclick="deleteMarkers()">Clear</button>
<button id="run" onclick="transformCoordinates()">Run</button>
</div>
<div id="table-div"></div>
</div>
<footer>
<div id="footer-text">
<h3>ORD lo.</h3>
<p>
<a href="https://github.com/Airiinnn">Alex</a> |
<a href="https://github.com/wuihee">Wuihee</a> |
<a href="mailto: [email protected]">Contact</a> |
<a href="pages/donate.html">Support Us</a>
</p>
</div>
</footer>
<script type="text/javascript" src="scripts/index.js"></script>
</div>
</body>
</html>