-
Notifications
You must be signed in to change notification settings - Fork 2
/
map.html
69 lines (67 loc) · 2.1 KB
/
map.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA6GJyhnAAaFa17tKwoLlVw_h-4pqMCiLU&libraries=places"></script>
<link rel="stylesheet" type="text/css" href="css/foundation.css">
<link rel="icon" sizes="120x120" href="img/appicon.png">
<style>
html, body {
height: 100%;
width:100%;
margin: 0px;
padding: 0px
}
.googlemap{
height:100%;
width:96%;
margin: 2%;
}
</style>
<title>
Keep Safe Essex Map
</title>
</head>
<body>
<h1 class="text-center">Keep Safe Locations</h1>
<div class="row">
<div class="large-12 columns text-center">
<ul class="button-group">
<li><a role="button" tabindex="0" class="button">Sign in</a></li>
<li><a role="button" tabindex="0" class="button">Register</a></li>
<li><a role="button" href="index.html" tabindex="0" class="button">Home</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="row">
<div class="large-12 columns">
<div class="row collapse">
<div class="small-12 columns">
<input id="searchText" type="text" placeholder="Plan to visit somewhere?">
<small id="searchError" class="error">Location Not Found!</small>
</div>
</div>
<div class="row collapse">
<div class="small-12 columns">
<ul class="button-group" style="width:100%;">
<li style="width:50%;"><a href="#" style="width:100%;" onclick="FindLocation();" class="button">Search for Location</a></li>
<li style="width:50%;"><a class="button" style="width:100%;" onclick="FindCurrentPosition();">Current Location</a></li>
</ul>
</div>
</div>
</div>
</div>
</p>
<p id="progressParagraph">
<b>Map Point Progress:</b>
<progress id="mapProgress" value=0></progress>
</p>
</div>
</div>
<div class="googlemap"></div>
<script src="js/main.js"></script>
</body>
</html>