-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
77 lines (72 loc) · 3.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="http://netdna.bootstrapcdn.com/bootswatch/2.3.1/spruce/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="OpenLayers-2.12/theme/default/style.css" type="text/css" />
<title>ProjFinder Yo</title>
<style type="text/css">
body {
height: 100%;
width: 100%;
position: absolute;
background-color: LightGray;
}
.container-fluid, .row-fluid { height: inherit; padding-right: 0px;}
.data-col { height: 100%; }
.map-col { height: 100%; }
.map-div { height: 100%; }
img.olTileImage { max-width: none; }
</style>
<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<script src="OpenLayers-2.12/OpenLayers.js"></script>
<script src="projFinder.js"></script>
</head>
<body onload="init()">
<div class="container-fluid">
<div class="row-fluid">
<div class="span7 data-col">
<center>
X: <input type="text" class="input-small" id="xtxt" value="862343.62307"/>
Y: <input type="text" class="input-small" id="ytxt" value="318064.45455"/><br>
<input id="myButton" type="button" value="Find My Projection">
<br>
Map Center: <span id="xcoord"></span> , <span id="ycoord"></span>
<!--div id="xycoord"></div><br> -->
<!--Projection: <input type="text" id="xyproj" value="2285"/><br> -->
</center>
<br>
<div id="response-div" style="display: none;">
<table id="response-table" class="table table-hover table-condensed">
<thead>
<tr>
<th>Rank</th>
<th>Info</th>
<th>Distance</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="span5 map-col">
<div id="map" class="map-div">
</div>
</div>
</div>
</div>
</body>
<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-1253169-11', 'projfinder.com');
ga('send', 'pageview');
</script>
</html>