-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (65 loc) · 3.05 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
<!DOCTYPE html>
<head>
<title>Map of Public Buildings in Great Britain 1900s - National Library of Scotland</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.16.0/ol.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.16.0/ol.css" type="text/css">
<link type="text/css" rel="stylesheet" href="maincss.css" media="screen"/>
<link type="text/css" rel="stylesheet" href="bootstrap-slider.css"/>
<!--<script src="ol.js" type="text/javascript"></script>
<link rel="stylesheet" href="ol.css" type="text/css">-->
</head>
<body>
<div id="header">
<div id="headertitle">
<h1>Map of Public Buildings in Great Britain 1900s</h1>
</div>
<div id="nav" class="nav">
<a class="active" href="https://geo.nls.uk/maps/buildings/">Home</a>
<a href="about.html">About the Project</a>
<a href="usage.html">How to Use the Map</a>
<a href="sidebyside.html">Side-by-Side Viewer</a>
<a href="spy.html">Spy Viewer</a>
</div>
<div id="logo">
<a href="https://www.ucl.ac.uk/digital-humanities/"><img src="https://www.sygnaturediscovery.com/wp-content/uploads/2017/08/University_College_London_logo.svg.png" width=105></a>
<a href="https://www.nls.uk"><img src="https://maps.nls.uk/assets/graphics/nls_logo_notext.png" width=110></a>
</div>
</div>
<div id="sidebar">
<h3>Choose a type of public building:</h3>
<form><select id="dataSelect" onchange="changeData(this.selectedIndex)"></select></form>
<br><br><br>
<h3>Show population density:</h3>
<input id="choropleth_england" type="checkbox"/><label for="choropleth_england">Population of England and Wales by registration districts, 1901</label><br><br>
<input id="choropleth_scotland" type="checkbox"/><label for="choropleth_scotland">Population of Scotland by districts of county, 1951</label>
<br><br>
<h3>Choose a background map:</h3>
<div id="baselayerSelect" ></select></div>
</div>
<div id="map" class="map"></div>
<div id="population_legend_england">
<h4>Key to Population, England and Wales</h4>
<img src="https://geo.nls.uk/maps/buildings/img/England_population_legend.png" width=80%>
</div>
<div id="population_legend_scotland">
<h4>Key to Population, Scotland</h4>
<img src="https://geo.nls.uk/maps/buildings/img/Scotland_population_legend.png" width=70%>
</div>
<div id="messageBox">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
<h3>Assembly Buildings</h3>
<p>
<ul>
<li>assembly rooms</li>
<li>gymnasiums</li>
<li>town/city halls</li>
</ul>
</p>
</div>
<div id="zoom_statement"></div>
<div id="reset"><button class="button" onclick="resetZoom();">Zoom to extent</button></div>
<script src="./indexScript.js"></script>
</body>
</html>