-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
466 lines (353 loc) · 15.3 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
<!DOCTYPE html>
<html>
<head>
<title>Connecticut Zoning Atlas</title>
<meta name="description" content="This interactive map shows how outdated zoning laws make it hard to build diverse, affordable housing in Connecticut.">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css"/>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<link rel="stylesheet" href="style.css" />
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="scripts/leaflet-hash.js"></script>
<script src="scripts/leaflet-pattern.js"></script>
<script src="scripts/jquery.unserialize.js"></script>
<!-- Driver.js for first-time tour -->
<script src="https://unpkg.com/driver.js/dist/driver.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/driver.js/dist/driver.min.css">
<!-- Load Esri Leaflet from CDN -->
<script src="https://unpkg.com/esri-leaflet@2.5.2/dist/esri-leaflet.js"></script>
<!-- Load Esri Leaflet Geocoder from CDN -->
<link rel="stylesheet" href="https://unpkg.com/esri-leaflet-geocoder@2.3.3/dist/esri-leaflet-geocoder.css">
<script src="https://unpkg.com/esri-leaflet-geocoder@2.3.3/dist/esri-leaflet-geocoder.js"></script>
<!-- Load Material icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="data/demographics.js"></script>
<script src="data/transit.js"></script>
<script src="scripts/map.js"></script>
</head>
<body class="helvetica">
<div id="map" class="vw-100 vh-100"></div>
<div class="pa3 shadow-1 dn bg-white" id="activeAreaCalculator"></div>
<div id="sidebar" class="pa3 br1">
<div class="cf">
<img src="./img/ct-zoning-atlas-logo.png" style="height: 45px; width: auto;" alt="CT Zoning Atlas">
</div>
<h1 class="f3 mv2 black-90 dn" id="CtZoningAtlas">
Connecticut Zoning Atlas
</h1>
<p class="f5 mv2">
This interactive map shows how outdated zoning laws make it
hard to build diverse, affordable housing.
</p>
<p class="f6 mv2">
Use checkboxes below to filter zones in the map.
Click a town to see what % of its territory
satisfies selected criteria.
</p>
<form id="form" class="f6 lh-title">
<input type="hidden" name="townActive" value="">
<div id="TypeOfZoningDistrict">
<h2 class="f5 mb1 black-40">Type of Zoning District</h2>
<ul id="legend" class="list pl0 mt0">
<li>
<span class="square" title="R"></span> Primarily Residential <span class="black-40 i">(satisfies criteria)</span>
</li>
<li>
<span class="square" title="M"></span> Mixed with Residential <span class="black-40 i">(satisfies criteria)</span>
</li>
<li>
<span class="square" title="N"></span> Nonresidential Zone <span class="black-40 i">(satisfies criteria)</span>
</li>
<li>
<span class="square" title="NS"></span> Any Zone Not Satisfying Criteria
</li>
</ul>
</div>
<div id="PermittedResidentialUses">
<div class="cf mv1">
<h2 class="f5 mv0 black-40 fl" id="PermittedResidentialUses">Permitted Residential Uses</h2>
<span class="dib fr material-icons dim black-50 bg-light-gray br-100" id="resetFilters" title="Clear filters">clear</span>
</div>
<div class="filter-group">
<label class="f5">
<input type="checkbox" class="w1 h1 main-in-group" name="1F" value="">
<span>1-Family Housing</span>
</label>
<div class="pl1 subgroup dn pb2 bb b--black-10">
<div class="at-least-one-checked pa1 br1">
<label>
<input type="checkbox" class="checked-by-default" name="1F" value="A">
Allowed As of Right
</label>
<br>
<label>
<input type="checkbox" class="checked-by-default" name="1F" value="AH">
Allowed Only After Public Hearing
</label>
</div>
<h5 class="f6 mb0 mt2 black-80 pl1">Minimum Lot Size, acres</h5>
<div class="at-least-one-checked pa1 br1">
<label>
<input type="checkbox" class="checked-by-default" name="1MLS" value="A"> None
</label>
<label>
<input type="checkbox" class="checked-by-default" name="1MLS" value="B"> .01-.46
</label>
<label>
<input type="checkbox" class="checked-by-default" name="1MLS" value="C"> .47–.91
</label>
<label>
<input type="checkbox" class="checked-by-default" name="1MLS" value="D"> .92–1.83
</label>
<label>
<input type="checkbox" class="checked-by-default" name="1MLS" value="E"> 1.84+
</label>
</div>
<div class="mt2 pa1">
<label>
<input type="checkbox" name="1MUS" value="0">
No Minimum Unit Size Requirement
</label>
<br>
<label>
<input type="checkbox" name="1E" value="No">
Not Restricted to Elderly Only
</label>
</div>
</div>
</div>
<!-- 2-Family -->
<div class="filter-group">
<label class="f5">
<input type="checkbox" name="2F" class="w1 h1 main-in-group" value="">
<span>2-Family Housing</span>
</label>
<div class="pl1 subgroup dn pb2 bb b--black-10">
<div class="at-least-one-checked pa1 br1">
<label>
<input type="checkbox" class="checked-by-default" name="2F" value="A">
Allowed As of Right
</label>
<br>
<label>
<input type="checkbox" class="checked-by-default" name="2F" value="AH">
Allowed Only After Public Hearing
</label>
</div>
<h5 class="f6 mb0 mt2 black-80 pl1">Minimum Lot Size, acres</h5>
<div class="at-least-one-checked pa1 br1">
<label>
<input type="checkbox" class="checked-by-default" name="2MLS" value="A"> None
</label>
<label>
<input type="checkbox" class="checked-by-default" name="2MLS" value="B"> .01-.46
</label>
<label>
<input type="checkbox" class="checked-by-default" name="2MLS" value="C"> .47–.91
</label>
<label>
<input type="checkbox" class="checked-by-default" name="2MLS" value="D"> .92–1.83
</label>
<label>
<input type="checkbox" class="checked-by-default" name="2MLS" value="E"> 1.84+
</label>
</div>
<div class="mt2 pa1">
<label>
<input type="checkbox" name="2MUS" value="0">
No Minimum Unit Size Requirement
</label>
<br>
<label>
<input type="checkbox" name="2E" value="No">
Not Restricted to Elderly Only
</label>
</div>
</div>
</div>
<!-- 3-Family -->
<div class="filter-group">
<label class="f5">
<input type="checkbox" name="3F" class="w1 h1 main-in-group" value="">
<span>3-Family Housing</span>
</label>
<div class="pl1 subgroup dn pb2 bb b--black-10">
<div class="at-least-one-checked pa1 br1">
<label>
<input type="checkbox" class="checked-by-default" name="3F" value="A">
Allowed As of Right
</label>
<br>
<label>
<input type="checkbox" class="checked-by-default" name="3F" value="AH">
Allowed Only After Public Hearing
</label>
</div>
<h5 class="f6 mb0 mt2 black-80 pl1">Minimum Lot Size, acres</h5>
<div class="at-least-one-checked pa1 br1">
<label>
<input type="checkbox" class="checked-by-default" name="3MLS" value="A"> None
</label>
<label>
<input type="checkbox" class="checked-by-default" name="3MLS" value="B"> .01-.46
</label>
<label>
<input type="checkbox" class="checked-by-default" name="3MLS" value="C"> .47–.91
</label>
<label>
<input type="checkbox" class="checked-by-default" name="3MLS" value="D"> .92–1.83
</label>
<label>
<input type="checkbox" class="checked-by-default" name="3MLS" value="E"> 1.84+
</label>
</div>
<div class="mt2 pa1">
<label>
<input type="checkbox" name="3MUS" value="0">
No Minimum Unit Size Requirement
</label>
<br>
<label>
<input type="checkbox" name="3E" value="No">
Not Restricted to Elderly Only
</label>
</div>
</div>
</div>
<!-- 4+ Family -->
<div class="filter-group">
<label class="f5">
<input type="checkbox" name="4F" class="w1 h1 main-in-group" value="">
<span>4+ Family Housing</span>
</label>
<div class="pl1 subgroup dn pb2 bb b--black-10">
<div class="at-least-one-checked pa1 br1">
<label>
<input type="checkbox" class="checked-by-default" name="4F" value="A">
Allowed As of Right
</label>
<br>
<label>
<input type="checkbox" class="checked-by-default" name="4F" value="AH">
Allowed Only After Public Hearing
</label>
</div>
<h5 class="f6 mb0 mt2 black-80 pl1">Minimum Lot Size, acres</h5>
<div class="at-least-one-checked pa1 br1">
<label>
<input type="checkbox" class="checked-by-default" name="4MLS" value="A"> None
</label>
<label>
<input type="checkbox" class="checked-by-default" name="4MLS" value="B"> .01-.46
</label>
<label>
<input type="checkbox" class="checked-by-default" name="4MLS" value="C"> .47–.91
</label>
<label>
<input type="checkbox" class="checked-by-default" name="4MLS" value="D"> .92–1.83
</label>
<label>
<input type="checkbox" class="checked-by-default" name="4MLS" value="E"> 1.84+
</label>
</div>
<div class="mt2 pa1">
<label>
<input type="checkbox" name="4MUS" value="0">
No Minimum Unit Size Requirement
</label>
<br>
<label>
<input type="checkbox" name="4E" value="No">
Not Restricted to Elderly Only
</label>
</div>
</div>
</div>
<div class="filter-group">
<label class="f5">
<input type="checkbox" class="w1 h1 main-in-group" name="AD" value="">
<span>Accessory Dwelling Units</span>
</label>
<div class="pl1 subgroup dn pb2 bb b--black-10">
<div class="at-least-one-checked pa1 br1">
<label>
<input type="checkbox" class="checked-by-default" name="AD" value="A">
Allowed As of Right
</label>
<br>
<label>
<input type="checkbox" class="checked-by-default" name="AD" value="AH">
Allowed Only After Public Hearing
</label>
</div>
<h5 class="f6 mb0 mt2 black-80 pl1">Occupancy Requirements</h5>
<div class="ph1">
<label>
<input type="checkbox" name="AOwn" value="No"> Allows Non-Owner Occupancy
</label> <br>
<label>
<input type="checkbox" name="AFam" value="No"> Allows Non-Family/Non-Employees
</label> <br>
<label>
<input type="checkbox" name="ARent" value="No"> Allows Renters
</label> <br>
<label>
<input type="checkbox" name="AEld" value="No"> Not Restricted to Elderly Only
</label>
</div>
<h5 class="f6 mb0 mt2 black-80 pl1">Physical Requirements</h5>
<div class="ph1">
<label>
<input type="checkbox" name="APrim" value="No"> Not Restricted to Primary Structure
</label> <br>
<label>
<input type="checkbox" name="ASize" value="No"> No Maximum Size Limitation
</label>
</div>
</div>
</div>
</div>
<div id="Overlays">
<h2 class="f5 mb1 black-40">Overlays</h2>
<label class="f5" title="Includes ponds, lakes, oceans, swamps, glaciers, and the area covered by large rivers, streams, and/or canals. Data from TIGER/Line Shapefile, 2010, CT, Current Area Hydrography Shapefile.">
<input type="checkbox" class="h1 w1 main-in-group" name="Overlay" value="hydro">
Waterways
</label>
<br>
<label class="f5" title="">
<input type="checkbox" class="h1 w1 main-in-group" name="Overlay" value="fs">
Federal/State Public Lands
</label>
<br>
<label class="f5" title="">
<input type="checkbox" class="h1 w1 main-in-group" name="Overlay" value="sewer">
Sewer Service Areas
</label>
<div class="filter-group">
<label class="f5">
<input type="checkbox" class="h1 w1 main-in-group" name="Overlay" value="transit">
Transit Stations (Rail & CTfastrak)
</label>
<div class="pl1 dn subgroup pb2 bb b--black-10">
<span class="f6 black-50 ml3 pl1 i">Circles represent 0.5-mile radius</span>
</div>
</div>
</div>
<div id="ZoneOpacity">
<h2 class="f5 mb1 black-40">Zone Opacity</h2>
<input type="range" min="1" max="100" value="90" name="opacity">
</div>
</form>
<p class="black-40 f6 mb0">
This map was created to support the
<a href="http://www.desegregatect.org/" class="link dim black-50 underline" target="_blank">
DesegregateCT</a> movement, with support from the
<a href="https://www.ctdata.org" class="link dim black-50 underline" target="_blank">
CT Data Collaborative</a>.
</p>
</div>
</body>
</html>