-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
46 lines (44 loc) · 2.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NYC Historical Addresses - Tutorial using NYC Space/Time Directory data</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="js/d3.v3.min.js"></script>
<script src="js/leaflet.js"></script>
<script src="js/lunr.min.js"></script>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/leaflet.css" />
</head>
<body>
<header>
<h1>NYC Historical Addresses</h1>
<h2>A tutorial about using & visualizing <a href="http://spacetime.nypl.org/">NYC Space/Time Directory</a> data</h2>
<p>
This web page is the final result of a <a href="https://github.com/bertspaan/tutorial-historical-addresses">tutorial</a> presented in the <a href="https://www.meetup.com/historical-data-and-maps-at-nypl/events/236221289/)">second meetup</a> of <a href="http://spacetime.nypl.org">NYC Space/Time Directory</a>'s <a href="https://www.meetup.com/historical-data-and-maps-at-nypl/">meetup series</a>.
In this tutorial, you will learn how to use and visualize historical address and street data from NYPL's <a href="http://spacetime.nypl.org/">NYC Space/Time Directory</a>.
</p>
<p class="center"><strong>
See <a href="https://github.com/bertspaan/tutorial-historical-addresses">GitHub for the tutorial</a>.</strong>
</p>
</header>
<article>
<input id="search" tabindex="1" placeholder="Search historical addresses in Building Inspector data" autofocus />
<div id="results">
<ol id="list" tabindex="0">
</ol>
<div id="map-container" class="hidden">
<div id="map">
</div>
<div id="slider-container">
<label>
<span>Opacity:</span>
<input id="slider" type="range" min="0" max="100" step="1" value="100" />
</label>
</div>
</div>
</div>
</article>
<script src="js/historical-addresses.js"></script>
</body>
</html>