-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstores.html
60 lines (47 loc) · 2.39 KB
/
stores.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />
<meta charset="utf-8">
<!-- iPad/iPhone specific css below, add after your main css >
<link rel="stylesheet" media="only screen and (max-device-width: 1024px)" href="ipad.css" type="text/css" />
<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="iphone.css" type="text/css" />
-->
<!-- If your application is targeting iOS BEFORE 4.0 you MUST put json2.js from http://www.JSON.org/json2.js into your www directory and include it here -->
<script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
<link rel="stylesheet" href="css/jquery.mobile.1.1.0.min.css" />
<script src="js/jquery-1.6.4.min.js"></script>
<script src="js/main.js"></script>
<script src="js/jquery.mobile-1.1.0.min.js"></script>
<!-- MAP -->
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="js/map.js"></script>
</head>
<body>
<div data-role="page" id="stores">
<div data-theme="a" data-role="header" data-position="fixed"> <h3> STORES </h3> </div>
<div data-role="content">
<article>
<p>Finding your location: <span id="status">checking...</span></p>
</article>
<div id="mappa" style="margin:0 auto;width:560px" />
<input id="login" />
<button onclick="saveLogin();">SAVE</button>
<button onclick="readLogin();">READ</button>
<button onclick="getGeo();">GEO LOCALIZE ME</button>
<p id="geolocation">Finding geolocation...</p>
</div>
<div data-theme="a" data-role="footer" data-position="fixed" data-id="commonFooter">
<div data-role="navbar" data-iconpos="top">
<ul>
<li> <a href="index.html" data-theme="" data-icon="home" > HOME </a> </li>
<li> <a href="news.html" data-theme="" data-icon="check" > NEWS </a> </li>
<li> <a href="stores.html" data-theme="" data-icon="info" class="ui-btn-active ui-state-persist"> STORES </a> </li>
<li> <a href="contact.html" data-theme="" data-icon="star"> CONTACT </a> </li>
</ul>
</div>
</div>
</div>
</body>
</html>