-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (110 loc) · 4.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
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
125
126
127
128
129
130
131
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>LOCATIONS</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--External CSS import-->
<link rel="stylesheet" href="css/style.css" type="text/css"/>
<!--bootstrap 4 v 4.0.0-->
<link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap.css"/>
<link rel="stylesheet"
href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href=""/>
<!--External CDN script imports-->
<script src="./js/jquery-3.1.1.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?libraries=geometry&key=AIzaSyAdp3O-uxOmY4vd7k8EfCfcg_cLYooZhOw"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
</head>
<body>
<ul id="ui-buttons">
<li class="fa fa-question-circle fa-4x help" aria-hidden="true"></li>
<li class="fa fa-times-circle fa-4x exit" aria-hidden="true"></li>
</ul>
<div id="main" style="width: 100%; height: 100%">
<div id="siteLoader">
<header class="text-center">
<h1 style="color:white"class="h1">Getting things together...</h1>
<h2 id="output" style="color:white"></h2>
<!-- pinwheel in html side-->
<div class="main-container">
<div id="pinwheel-container">
<div id="pin-1">
<div class="pin-base"></div>
<div class="pin-big-triangle"></div>
</div>
<div id="pin-2">
<div class="pin-base"></div>
<div class="pin-big-triangle"></div>
</div>
<div id="pin-3">
<div class="pin-base"></div>
<div class="pin-big-triangle"></div>
</div>
<div id="pin-4">
<div class="pin-base"></div>
<div class="pin-big-triangle"></div>
</div>
<div class="pinwheel-center-circle">
</div>
</div>
</div>
<!-- The h2 tag had to be outside of main div-->
<h2 id="output" class="h2"></h2>
<div class="pinwheel-stick"></div>
</header>
</div>
</div>
<!--alerts modal for error handling-->
<div class="modal" id="myModal">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modalName">Modal title</h5>
</div>
<div class="modal-body" id="modalMessage">
<p>Modal body text goes here.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="reloadApp">Refresh</button>
<button type="button" class="btn btn-danger" id="exitApp">Exit</button>
</div>
</div>
</div>
</div>
<div class="modal" id="myHelp">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">User Guide</h5>
</div>
<div class="modal-body">
<h6 style="display: block">Key</h6>
<dl>
<dd><img src="icon.png"></dd>
<dt>Predefined locations on map</dt>
<dd><i class="fa fa-question-circle fa-2x"></i></dd>
<dt>Click for help</dt>
<dd><i class="fa fa-times-circle fa-2x"></i></dd>
<dt>Close/Exit the application</dt>
<dd><img src="Marker-48.png"></dd>
<dt>Current location. <span
style="color: tomato; font-weight: bold">NB: May not be 100% accurate</span>
</dt>
</dl>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
<div id="alertBox">
</div>
<script src="./js/functions.js"></script>
<script src="./js/scripts.js"></script>
<script src="./waypoint.js"></script>
</body>
</html>