This repository has been archived by the owner on Jan 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathindex.html
42 lines (42 loc) · 1.87 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
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Where I parked my car</title>
<link rel="stylesheet" href="css/jquery.mobile-1.2.0.min.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/jquery.mobile.config.js"></script>
<script src="js/jquery.mobile-1.2.0.min.js"></script>
<script src="cordova.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="js/functions.js"></script>
<script src="js/maps.js"></script>
<script src="js/positions.js"></script>
<script>
$(document).one('deviceready', initApplication);
</script>
</head>
<body>
<div id="welcome-page" data-role="page">
<header data-role="header">
<h1>Where I parked my car</h1>
</header>
<div id="content" data-role="content">
<p>
Where I parked my car lets you bookmark where you parked your car on a map
and then find a route when you want to return to it. The app will also
save a log of your saved positions (up to 50).
</p>
<a href="map.html?requestType=set" id="set-car-position" data-role="button">Set position</a>
<a href="map.html?requestType=get" id="find-car" data-role="button">Find car</a>
<a href="positions.html" id="positions-history" data-role="button">Positions history</a>
</div>
<footer data-role="footer">
<h3>Created by Aurelio De Rosa</h3>
<a href="aurelio.html" data-icon="info" data-iconpos="notext" class="ui-btn-right">Credits</a>
</footer>
</div>
</body>
</html>