-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (61 loc) · 3.09 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Position Format Converter</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/pos.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<a href="https://github.com/larsch/position-format-converter"><img class="forkme" src="https://camo.githubusercontent.com/e7bbb0521b397edbd5fe43e7f760759336b5e05f/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png"></a>
<div class="container">
<h1>Position Format Converter</h1>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBwyk4jkvnctp1kcsDSSUG29IN7SGU6mc8"></script>
<script src="js/pos.js"></script>
<form class="form-horizontal">
<div class="form-group">
<label for="signedDecimal" class="col-sm-3 control-label">Signed Degrees (Latitude, Longitude)</label>
<div class="col-sm-9">
<input type="text" class="form-control position" id="signedDecimal">
</div>
</div>
<div class="form-group">
<label for="degreesDecimalMinutes" class="col-sm-3 control-label">Degrees, Decimal Minutes</label>
<div class="col-sm-9">
<input type="text" class="form-control position" id="degreesDecimalMinutes">
</div>
</div>
<div class="form-group">
<label for="degreesMinutesSeconds" class="col-sm-3 control-label">Degrees, Minutes, Seconds</label>
<div class="col-sm-9">
<input type="text" class="form-control position" id="degreesMinutesSeconds">
</div>
</div>
<div class="form-group">
<label for="gpgga" class="col-sm-3 control-label">NMEA - GPGGA</label>
<div class="col-sm-9">
<input type="text" class="form-control position" id="gpgga">
</div>
</div>
</form>
<div id="map-canvas" style="width: 100%; height: 600px; border-radius: 4px;">
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59878647-1', 'auto');
ga('send', 'pageview');
</script>
</div>
</body>
</html>