This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (49 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/googlemaps.css" />
<style>
.container-fluid, .container {
text-align: center;
}
#map-canvas {
min-height: 250px;
height: 50vh;
margin-top: 23px;
margin-bottom: 23px;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAjmcs-S8sQT6p4YZ9ZkMUZa7AQpaZnRIc"></script>
<script type="text/javascript" src="js/socket.io.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="phonegap.js"></script>
<script type="text/javascript" src="js/tracker.js"></script>
<script type="text/javascript">
var tracker = new Tracker;
</script>
<title>Second Line NOLA Tracker</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div id="map-canvas"></div>
<div class="col-md-offset-4 col-md-4">
<h3>Second Line NOLA Tracker</h3>
<p id="position" class="bg-info">
Waiting for device..
</p>
<button type="button" class="btn btn-success" disabled="disabled" id="start">
Start Tracking
</button>
</div>
</div>
</div>
</div>
</body>
</html>