-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Geofencing</title>
<link rel="stylesheet" href="stylesheets/bootstrap.min.css">
<link rel="stylesheet" href="stylesheets/styles.css">
</head>
<body>
<section>
<div class="container-fluid">
<div class="row">
<div class="col-md-5">
<h2> Walklists </h2>
<table class="table" id="walklists">
<thead>
<tr>
<th> Name </th>
<th> # of records </th>
<th> Assigned? </th>
<th> </th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="col-md-7">
<div id="map"></div>
</div>
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="Geofencing.js"> </script>
<script src="https://trcanvasdata.blob.core.windows.net/code/trc.js"> </script>
<script src="https://trcanvasdata.blob.core.windows.net/code/plugin.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDPEmHsLQ-OQpWL2AsjYwYq55XjW7k1oZY&libraries=drawing,geometry" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/randomcolor/0.4.2/randomColor.min.js"></script>
</body>
</html>