-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.88 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Find Maps by Place - OpenLayers viewer with bounding boxes in GeoServer</title>
<link type="text/css" rel="stylesheet" href="find.css" media="screen" />
<script type="text/javascript" src="OpenLayers.js"></script>
<script type="text/javascript" src="find.js"></script>
<script type="text/javascript" src="gaz.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?v=3&sensor=false"></script>
</head>
<body onload="init()" onresize="forceRedraw()">
<div id="header">
<div id="headertitle"> <h1>Find Maps by Place</h1><br />
<h2>Zoom in and click on the map to view historic maps covering this location</h2>
</div>
</div>
<div id="sidebar">
<h3>Search for a place:</h3>
<form id="nlsgazform" class="notranslate">
<p><label for="nlsgaz">Gazetteer / Brit Nat Grid Ref:</label>
<input type="search" autocomplete="off" id="nlsgaz" onfocus="if(this.value == 'Type a placename...') { this.value = ''; }" onblur="this.value=!this.value?'Type a placename...':this.value;" value="Type a placename..." name="nlsgaz" /> or</p>
<p><label for="county">County:</label> <select id="county" name="county"></select></p>
<p id="parish_span"><label for="parish">Parish:</label> <select id="parish" name="parish"></select></p>
</form>
<br />
<h3>Choose a map series:</h3>
<div id="overlaySelect"></div>
</div>
<div id="map">
<form><select id="layerSelect" onchange="map.setBaseLayer(map.layers[this.selectedIndex])"></select></form>
<div id="scalebar"></div>
</div>
<div id="resultsSideBar">
<h3>Results:</h3>
<div id="results"></div>
</div>
</body>
</html>