-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (81 loc) · 3.73 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en">
<head>
<head>
<title>Vermont Sanborn Maps</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<!-- Mobile meta tags-->
<meta name="HandheldFriendly" content="True">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="MobileOptimized" content="320"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta http-equiv="cleartype" content="on">
<!-- CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/css/bootstrap-responsive.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css" />
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="css/style.css" />
<!-- JS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-hash/0.2.1/leaflet-hash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/leaflet.markercluster.js"></script>
<script type="text/javascript" src="js/tabletop.js"></script>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
</head>
<body>
<div id="sidebar">
<div class="sidebar_header">
<h3>Vermont Sanborn Maps</h3>
</div>
<div class="sidebar_content">
Nothing compares to Sanborn maps! I love seeing Vermont towns develop over the years, from stables and ice houses to railroads and factories.
<br>
<br>I've stitched together and georeferenced maps for:
<br><a href='#18/43.133752/-72.444082'><br>Bellows Falls</a> (1896)
<br><a href='#15/44.4761/-73.2050'>Burlington</a> (1919)
<br><a href='#17/44.53531/-72.00116'>Lyndonville</a> (1922)
<br><a href='#18/44.26014/-72.57455'>Montpelier</a> (1915)
<br><a href='#18/43.138568/-72.507736'>Saxtons River</a> (1894)
<br><a href='#18/43.29851/-72.48165'>Springfield</a> (1894)
<br><br>
Use the slider bar below to alter the transparency:
<br>
<br>
<div id="slider">
</div>
<br>
Thanks to the <a href="http://www.loc.gov/rr/geogmap/sanborn/states.php?stateID=52" target="_blank">Library of Congress</a> for sharing these amazing maps.<br><br>
Built by <a href="http://www.mappingvermont.org" target="blank">MappingVermont</a>.
</div>
</div>
<div class="toggle_description btn" type="button">
About this map
</div>
<div class="description_box">
<div class="x_button toggle_description btn btn-primary" type="button">
<strong>X</strong>
</div>
<div class="description_box_header"></div>
<div class="description_box_content">
<div class="description_box_text"></div>
<div id="caption_box"></div>
</div>
</div>
<div class="description_box_cover"></div>
<div id="map"></div>
<script src="js/script.js"></script>
<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-58667523-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>