-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathlayer-groups.js
6734 lines (6731 loc) · 180 KB
/
layer-groups.js
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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// this fixture file is intended for testing purposes only
// it replaces "real" requests for tile resources with
// s3-provided dummy tiles, fonts, etc.
// the name of this s3-bucket is https://labs-mapbox-gl-noop-tiles.nyc3.digitaloceanspaces.com
// see v3.json also to update the bucket name.
export default {
data: [
{
type: 'layer-groups',
id: 'zoning-districts',
attributes: {
id: 'zoning-districts',
visible: true,
legend: {
label: 'Zoning Districts',
tooltip:
'A zoning district is a residential, commercial or manufacturing area of the city within which zoning regulations govern land use and building bulk.',
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'zd-fill',
},
{
type: 'layers',
id: 'zd-lines',
},
{
type: 'layers',
id: 'zd_labels',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'zoning-districts',
},
],
},
},
},
{
type: 'layer-groups',
id: 'street-centerlines',
attributes: {
id: 'street-centerlines',
visible: true,
legend: {
label: 'Street Names',
tooltip: 'Legal street names as shown on the City Map',
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'citymap-street-centerlines-symbol',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'digital-citymap',
},
],
},
},
},
{
type: 'layer-groups',
id: 'commercial-overlays',
attributes: {
id: 'commercial-overlays',
visible: true,
legend: {
label: 'Commercial Overlays',
tooltip:
'A commercial overlay is a C1 or C2 district mapped within residential districts to serve local retail needs.',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
prefix: 'far',
color: 'rgba(220,10,10,0.75)',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'co-fill',
},
{
type: 'layers',
id: 'co',
},
{
type: 'layers',
id: 'co_labels',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'zoning-map-amendments',
attributes: {
id: 'zoning-map-amendments',
visible: false,
legend: {
label: 'Zoning Map Amendments',
tooltip:
'Changes to the Zoning Map that have been adopted since 2002',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(159, 199, 62, 0.6)',
stroke: 'rgba(159, 199, 62, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'zma-line',
},
{
type: 'layers',
id: 'zma-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'zoning-map-amendments',
},
],
},
},
},
{
type: 'layer-groups',
id: 'zoning-map-amendments-pending',
attributes: {
id: 'zoning-map-amendments-pending',
visible: false,
legend: {
label: 'Pending Zoning Map Amendments',
tooltip:
'Changes to the Zoning Map that are currently undergoing public review',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(176, 31, 31, 0.6)',
stroke: 'rgba(176, 31, 31, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'zmacert-line',
},
{
type: 'layers',
id: 'zmacert-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'zoning-map-amendments',
},
],
},
},
},
{
type: 'layer-groups',
id: 'special-purpose-districts',
attributes: {
id: 'special-purpose-districts',
visible: false,
legend: {
label: 'Special Purpose Districts',
tooltip:
'The regulations for special purpose districts are designed to supplement and modify the underlying zoning in order to respond to distinctive neighborhoods with particular issues and goals',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
color: 'rgba(94,102,51, 1)',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'zoning-sp-line',
},
{
type: 'layers',
id: 'zoning-sp-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'special-purpose-subdistricts',
attributes: {
id: 'special-purpose-subdistricts',
visible: false,
legend: {
label: 'Special Purpose Subdistricts',
tooltip:
'Areas within Special Purpose Districts where unique rules apply. Special Purpose Subdistrict data is currently incomplete. See the Zoning Resolution for a complete description of the special purpose district.',
infolink: 'https://zr.planning.nyc.gov',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
color: '#8DA610',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'zoning-sp-sd-line',
},
{
type: 'layers',
id: 'zoning-sp-sd-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'limited-height-districts',
attributes: {
id: 'limited-height-districts',
visible: false,
legend: {
label: 'Limited Height Districts',
tooltip:
'A limited height district may be superimposed on an area designated as an historic district by the Landmarks Preservation Commission. It is mapped in areas of the Upper East Side, Gramercy Park, Brooklyn Heights and Cobble Hill. The maximum building height is 50 feet in a LH-1 district, 60 feet in a LH-1A district, 70 feet in a LH-2 district and 100 feet in a LH-3 district.',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(118, 66, 10, 0.2)',
stroke: 'rgba(118, 66, 10, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'limited-height-districts-line',
},
{
type: 'layers',
id: 'limited-height-districts-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'mandatory-inclusionary-housing',
attributes: {
id: 'mandatory-inclusionary-housing',
visible: false,
legend: {
label: 'Mandatory Inclusionary Housing Areas',
tooltip:
'Areas where developments, enlargements and conversions over a certain size are required to set aside a percentage of floor area for permanently affordable housing',
infolink:
'https://www1.nyc.gov/site/planning/zoning/districts-tools/inclusionary-housing.page',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(204, 61, 93, 0.2)',
stroke: 'rgba(204, 61, 93, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'mandatory-inclusionary-housing-line',
},
{
type: 'layers',
id: 'mandatory-inclusionary-housing-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'inclusionary-housing',
attributes: {
id: 'inclusionary-housing',
visible: false,
legend: {
label: 'Inclusionary Housing Designated Areas',
tooltip:
'Areas where zoning incentives are offered to encourage the creation of permanently affordable housing',
infolink:
'https://www1.nyc.gov/site/planning/zoning/districts-tools/inclusionary-housing.page',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(229, 115, 0, 0.2)',
stroke: 'rgba(229, 115, 0, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'inclusionary-housing-line',
},
{
type: 'layers',
id: 'inclusionary-housing-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'transit-zones',
attributes: {
id: 'transit-zones',
visible: false,
legend: {
label: 'Appendix I',
tooltip:
'Transit-accessible areas where special streetscape and special parking requirements apply.',
infolink:
'https://www1.nyc.gov/site/planning/zoning/glossary.page#transit_zone',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(49, 151, 149, 0.2)',
stroke: 'rgba(49, 151, 149, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'transit-zones-line',
},
{
type: 'layers',
id: 'transit-zones-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'fresh',
attributes: {
id: 'fresh',
visible: false,
legend: {
label: 'FRESH Zones',
tooltip:
'FRESH promotes the establishment and expansion of neighborhood grocery stores in underserved communities by providing zoning and financial incentives',
infolink:
'https://www1.nyc.gov/site/planning/zoning/districts-tools/fresh-food-stores.page',
items: [
{
label: 'Zoning incentives',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
color: 'rgba(11, 147, 144, 0.2)',
},
],
},
},
{
label: 'Zoning and discretionary tax incentives',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
color: 'rgba(48, 191, 78, 0.2)',
},
],
},
},
{
label: 'Discretionary tax incentives',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
color: 'rgba(143, 227, 57, 0.2)',
},
],
},
},
],
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'fresh-line',
},
{
type: 'layers',
id: 'fresh-fill-zoning-and-tax',
},
{
type: 'layers',
id: 'fresh-fill-zoning',
},
{
type: 'layers',
id: 'fresh-fill-tax',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'low-density-growth-mgmt-areas',
attributes: {
id: 'low-density-growth-mgmt-areas',
visible: false,
legend: {
label: 'Lower Density Growth Management Areas',
tooltip:
'Areas where special zoning controls intend to limit growth and better match available infrastructure and services in lower-density areas experiencing rapid development',
infolink:
'https://www1.nyc.gov/site/planning/zoning/districts-tools/lower-density-growth-mngmt.page',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(157, 71, 178, 0.2)',
stroke: 'rgba(157, 71, 178, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'low-density-growth-mgmt-areas-line',
},
{
type: 'layers',
id: 'low-density-growth-mgmt-areas-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'coastal-zone-boundary',
attributes: {
id: 'coastal-zone-boundary',
visible: false,
legend: {
label: 'Coastal Zone Boundary',
tooltip:
'Projects within the coastal zone boundary are subject to additional review under the Waterfront Revitalization Program',
infolink:
'https://www1.nyc.gov/site/planning/data-maps/open-data/dwn-wrp.page',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(93, 198, 228, 0.2)',
stroke: 'rgba(93, 198, 228, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'coastal-zone-boundary-line',
},
{
type: 'layers',
id: 'coastal-zone-boundary-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'waterfront-access-plan',
attributes: {
id: 'waterfront-access-plan',
visible: false,
legend: {
label: 'Waterfront Access Plan',
tooltip:
'These areas reflect site specific modification of waterfront public access requirements for waterfront parcels with unique conditions and opportunities',
infolink:
'https://www1.nyc.gov/site/planning/zoning/districts-tools/waterfront-zoning.page',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(0, 164, 210, 0.2)',
stroke: 'rgba(0, 164, 210, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'waterfront-access-plan-line',
},
{
type: 'layers',
id: 'waterfront-access-plan-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'historic-districts',
attributes: {
id: 'historic-districts',
visible: false,
legend: {
label: 'Historic Districts',
tooltip:
'Areas designated by the NYC Landmarks Preservation Commission that possess historical significance and to which special zoning regulations apply',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(70, 130, 180, 0.2)',
stroke: 'rgba(70, 130, 180, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'historic-districts-line',
},
{
type: 'layers',
id: 'historic-districts-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'landmark-historic',
},
],
},
},
},
{
type: 'layer-groups',
id: 'floodplain-efirm2007',
attributes: {
id: 'floodplain-efirm2007',
visible: false,
legend: {
label: 'Effective Flood Insurance Rate Maps 2007',
tooltip:
'The Effective Flood Insurance Rate Maps (FIRMs), first adopted by New York City in 1983 and last updated in 2007, establish the floodplain currently subject to the National Flood Insurance Program purchase requirements.',
infolink:
'https://www1.nyc.gov/site/planning/plans/climate-resiliency-faq.page',
items: [
{
label: 'V Zone',
tooltip:
'Portion of the 1% annual chance floodplain subject to high velocity wave action (a breaking wave 3 feet high or larger). V Zones are subject to more stringent building requirements than other zones because of the damaging force of waves.',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
color: '#0084a8',
},
],
},
},
{
label: 'A Zone',
tooltip:
'A portion of the area subject to flooding from the 1% annual chance flood. These areas are not subject to high velocity wave action but are still considered high risk flooding areas.',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
color: '#00a9e6',
},
],
},
},
],
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'effective-flood-insurance-rate-2007',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'floodplains',
},
],
},
},
},
{
type: 'layer-groups',
id: 'floodplain-pfirm2015',
attributes: {
id: 'floodplain-pfirm2015',
visible: false,
legend: {
label: 'Preliminary Flood Insurance Rate Maps 2015',
tooltip:
'Released in 2015 as part of a citywide flood map update, the Preliminary FIRMs establish the 1% annual chance floodplain. For building code and zoning purposes, the more expansive of the either the 2015 or 2007 maps is used.',
infolink:
'https://www1.nyc.gov/site/planning/plans/climate-resiliency-faq.page',
items: [
{
label: 'V Zone',
tooltip:
'Portion of the 1% annual chance floodplain subject to high velocity wave action (a breaking wave 3 feet high or larger). V Zones are subject to more stringent building requirements than other zones because of the damaging force of waves.',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
color: '#0084a8',
},
],
},
},
{
label: 'A Zone',
tooltip:
'A portion of the area subject to flooding from the 1% annual chance flood. These areas are not subject to high velocity wave action but are still considered high risk flooding areas.',
icon: {
type: 'fa-icon',
layers: [
{
'fa-icon': 'square',
color: '#00a9e6',
},
],
},
},
],
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'preliminary-flood-insurance-rate',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'floodplains',
},
],
},
},
},
{
type: 'layer-groups',
id: 'appendixj-designated-mdistricts',
attributes: {
id: 'appendixj-designated-mdistricts',
visible: false,
legend: {
label: 'Appendix J Designated M Districts',
tooltip:
'Designated areas within Manufacturing Districts in which self service storage facilities are subject to certain as-of-right provisions (subarea 1) or are subject to special permit by the City Planning Commission (subarea 2)',
infolink:
'https://www1.nyc.gov/assets/planning/download/pdf/data-maps/open-data/designated_areas_m_districts_metadata.pdf',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(243, 51, 225, 0.2)',
stroke: 'rgba(243, 51, 225, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'appendixj-designated-mdistricts-line',
},
{
type: 'layers',
id: 'appendixj-designated-mdistricts-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'business-improvement-districts',
attributes: {
id: 'business-improvement-districts',
visible: false,
legend: {
label: 'Business Improvement Districts',
tooltip:
'A Business Improvement District (BID) is a geographical area where local stakeholders oversee and fund the maintenance, improvement, and promotion of their commercial district.',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(118, 66, 10, 0.2)',
stroke: 'rgba(118, 66, 10, 0.6)',
'stroke-dasharray': '1',
},
],
},
},
},
relationships: {
layers: {
data: [
{
type: 'layers',
id: 'business-improvement-districts-line',
},
{
type: 'layers',
id: 'business-improvement-districts-fill',
},
],
},
sources: {
data: [
{
type: 'sources',
id: 'supporting-zoning',
},
],
},
},
},
{
type: 'layer-groups',
id: 'industrial-business-zones',
attributes: {
id: 'industrial-business-zones',
visible: false,
legend: {
label: 'Industrial Business Zones',
tooltip:
'Industrial Business Zones (IBZs) are areas where expanded business services are available for industrial and manufacturing businesses. This designation fosters high-performing business districts by creating competitive advantages over locating in areas outside of New York City.',
icon: {
type: 'rectangle',
layers: [
{
fill: 'rgba(43, 10, 118, 0.2)',
stroke: 'rgba(43, 10, 118, 0.6)',
'stroke-dasharray': '1',
},
],
},