-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (34 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<title>My Location Maps API v3</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link href="mylocation.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="googleMap"></div>
<div id="header">
<div class="hdrInfo"></div>
</div>
<div id="controlDiv">
<div class="locDiv">
<div class="listDiv">
<input type="text" class="searchInput" placeholder="Search location list..." id="searchInput" />
<div id="locationList" class="locList">
<!--populating XML list-->
</div>
</div>
<div class="infoDiv">
<p class="title"></p>
<p class="info"></p>
<p class="alink">back to locatoin list</p>
</div>
</div>
<div class="copy-right">© <a href="www.graphicguru.in" target="_blank">Graphicguru.in</a> </div>
</div>
<script src="https://maps.googleapis.com/maps/api/js?sensor=false">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="mylocation.js"></script>
</body>
</html>