-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathgps.htm
More file actions
26 lines (22 loc) · 705 Bytes
/
gps.htm
File metadata and controls
26 lines (22 loc) · 705 Bytes
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
<!doctype html>
<html lang="sv">
<head>
<meta charset="utf-8">
<title>Open GPS-tracker</title>
<!-- <link rel="stylesheet" href="style.css"> -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="gps.js"></script>
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width,user-scalable=no" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="page">
<div id="status"><p class="stopped"></p></div>
<button id="start">Start tracking</button>
<button id="stop" disabled="disabled">Stop tracking</button>
</div>
</body>
</html>