-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
39 lines (33 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<!-- TODO - remove stuff from header as this is only loaded by first (main) page -->
<title>Dive Butler</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.css"/>
<link rel="stylesheet" href="map.css"/>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.js"></script>
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDwZEp-H7ZEyr1x4JPerPlfgdxNnn3fzUQ&sensor=true"></script>
</head>
<body>
<!-- Map Page -->
<div data-role="page" id="map-page" data-add-back-btn="true" data-theme="a">
<div data-role="header" data-position="fixed">
<h1>Dive Butler</h1>
</div>
<div data-role="content" id="map-canvas">
<!-- map loads here... -->
</div>
<div data-role="footer" data-position="fixed" >
<div data-role="navbar">
<ul>
<li><a href="#" data-role="button" class="ui-btn-active ui-state-persist">Map</a></li>
<li><a href="#" data-role="button">List</a></li>
</ul>
</div>
</div>
<!--<script src="map.js"></script>-->
</div>
</body>
</html>