forked from phonegap/phonegap-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (31 loc) · 1.24 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
<!doctype html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width" />
<title>Awesome Locator</title>
<link rel="stylesheet" href="assets/css/master.css" type="text/css" media="screen" />
<link rel="stylesheet" href="assets/css/jquery.mobile-1.0a3.min.css" />
<script src="assets/js/jquery-1.5.min.js" type="text/javascript" charset="utf-8"></script>
<script src="assets/js/jquery.mobile-1.0a3.min.js" type="text/javascript" charset="utf-8"></script>
<script src="assets/js/jquery.json-2.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="assets/js/app.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div data-role="page" data-theme="e">
<div data-role="header">Awe<strong>Some</strong> Locator</div>
<div data-role="content">
<a href="#map">Show My Location</a>
</div>
</div>
<div data-role="page" id="map" data-theme="e">
<div data-role="header"><h1>Location</h1></div>
<div data-role="content">
<div class="map_image">
<img id="static_map" src="assets/img/staticmap.png">
<div id="directions_map"></div>
<div id="directions"></div>
</div>
<p>This is where you are</p>
</div>
</body>
</html>