-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
78 lines (71 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
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>otl-neighborhood-change</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-5488840-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-5488840-4');
</script>
<!-- Load Leaflet CSS from CDN-->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h3>Explore the Map: Neighborhood Change in Connecticut, 1934-present</h3>
</header>
<section>
<div id='map1'>
<div id="map1basemaps" class="basemaps-wrapper leaflet-bar">
<select name="basemaps">
<option value="magic1934">1934</option>
<option value="layer1990">1990</option>
<option value="layer2004">2004</option>
<option value="esriPresent" disabled>Present<options>
</select>
</div>
<div id="permalink">Permalink</div>
</div>
<div id='map2'>
<div id="map2basemaps" class="basemaps-wrapper leaflet-bar">
<select name="basemaps">
<option value="esriPresent">Present<options>
<option value="magic1934" disabled>1934</option>
<option value="layer1990">1990</option>
<option value="layer2004">2004</option>
</select>
</div>
</div>
</section>
<!-- Load Leaflet JS from CDN-->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<!-- load jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<!-- Load Esri Leaflet from CDN -->
<script src="https://unpkg.com/[email protected]/dist/esri-leaflet.js"
integrity="sha512-K0Vddb4QdnVOAuPJBHkgrua+/A9Moyv8AQEWi0xndQ+fqbRfAFd47z4A9u1AW/spLO0gEaiE1z98PK1gl5mC5Q=="
crossorigin=""></script>
<!-- Load Esri Leaflet Geocoder from CDN-->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/esri-leaflet-geocoder.css"
integrity="sha512-IM3Hs+feyi40yZhDH6kV8vQMg4Fh20s9OzInIIAc4nx7aMYMfo+IenRUekoYsHZqGkREUgx0VvlEsgm7nCDW9g=="
crossorigin="">
<script src="https://unpkg.com/[email protected]/dist/esri-leaflet-geocoder.js"
integrity="sha512-HrFUyCEtIpxZloTgEKKMq4RFYhxjJkCiF5sDxuAokklOeZ68U2NPfh4MFtyIVWlsKtVbK5GD2/JzFyAfvT5ejA=="
crossorigin=""></script>
<!-- load L.Map.Sync from local directory -->
<script type="text/javascript" src="L.Map.Sync.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>