-
Notifications
You must be signed in to change notification settings - Fork 0
/
compass.html
64 lines (49 loc) · 1.74 KB
/
compass.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
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.3.1.css" />
<link rel="stylesheet" href="css/compass.css" />
</head>
<body>
<div data-role="page">
<div data-role="header">
<a href="index.html" data-icon="home" data-theme="b">Tornar</a>
<h1>Brújula</h1>
</div><!-- /header -->
<div data-role="content">
<div id="results">
<div id="arrow"></div>
<div class="text">
<p>Distance to destination: <span id="distance"></span> metres</p>
<p>Bearing to destination: <span id="bearing"></span> degrees</p>
<p>Current heading: <span id="heading"></span> degrees</p>
<p>Difference in heading and bearing: <span id="difference"></span> degrees</p>
</div>
</div>
<p id="error"></p>
<h2>Destination</h2>
<div>
<label for="target-lat">Latitude: </label>
<input id="target-lat" value="41.62948" />
</div>
<div>
<label for="target-lon">Longitude: </label>
<input id="target-lon" value="2.68936" />
</div>
</div><!-- /content -->
<div data-role="footer">
<h4>Cau de Pineda</h4>
</div><!-- /footer -->
</div>
<script type="text/javascript" src="cordova-2.7.0.js"></script>
<script src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src ="js/latlon.js">//</script>
<script src="js/scripting.js"></script>
<script src="js/jquery.mobile-1.3.1.min.js"></script>
<script type="text/javascript" src ="js/latlon.js"></script>
<script src="js/compass.js"></script>
</body>
</html>