@ndwnu/map 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -322,5 +322,2311 @@ type NdwLayerSpecification = LayerSpecification & {
322
322
  };
323
323
  type NdwLayerFilterFunction = (layer: NdwLayerSpecification) => boolean;
324
324
 
325
- export { ApiBackgroundLayer, ApiElement, ApiLayer, ApiSource, BOUNDS_AMERSFOORT, BOUNDS_NL, COMMON_BOUNDS, DEFAULT_MAP_CONFIG, MapComponent, MapElement, MapElementRepository, MapLayer, MapSource, MaplibreCursorService, lineWidthFrcSpecification };
325
+ declare const NDWMapStyle: {
326
+ version: number;
327
+ name: string;
328
+ owner: string;
329
+ metadata: {
330
+ title: string;
331
+ desc: string;
332
+ design: string;
333
+ };
334
+ center: number[];
335
+ zoom: number;
336
+ sprite: {
337
+ id: string;
338
+ url: string;
339
+ }[];
340
+ glyphs: string;
341
+ sources: {
342
+ "pdok-aerial": {
343
+ type: string;
344
+ tiles: string[];
345
+ tileSize: number;
346
+ };
347
+ "pdok-brt": {
348
+ type: string;
349
+ tiles: string[];
350
+ minzoom: number;
351
+ maxzoom: number;
352
+ };
353
+ "pdok-bgt": {
354
+ type: string;
355
+ tiles: string[];
356
+ minzoom: number;
357
+ maxzoom: number;
358
+ attribution: string;
359
+ };
360
+ "pdok-bag": {
361
+ type: string;
362
+ tiles: string[];
363
+ minzoom: number;
364
+ maxzoom: number;
365
+ };
366
+ "pdok-administrative-division": {
367
+ type: string;
368
+ tiles: string[];
369
+ minzoom: number;
370
+ maxzoom: number;
371
+ };
372
+ "ndw-nwb-road-sections": {
373
+ type: string;
374
+ url: string;
375
+ minzoom: number;
376
+ maxzoom: number;
377
+ attribution: string;
378
+ };
379
+ "ndw-nwb-hectometre-signs": {
380
+ type: string;
381
+ url: string;
382
+ };
383
+ "ndw-fcd-segments": {
384
+ type: string;
385
+ tiles: string[];
386
+ minzoom: number;
387
+ maxzoom: number;
388
+ };
389
+ "ndw-wkd-parking-areas": {
390
+ type: string;
391
+ url: string;
392
+ };
393
+ };
394
+ layers: ({
395
+ id: string;
396
+ type: string;
397
+ metadata: {
398
+ group: string;
399
+ type: string;
400
+ "legend-name": string;
401
+ desc: string;
402
+ "insert-before": string;
403
+ "sub-group"?: undefined;
404
+ source?: undefined;
405
+ };
406
+ paint: {
407
+ "background-color": string;
408
+ "fill-color"?: undefined;
409
+ "fill-outline-color"?: undefined;
410
+ "fill-opacity"?: undefined;
411
+ "line-dasharray"?: undefined;
412
+ "line-color"?: undefined;
413
+ "line-width"?: undefined;
414
+ "line-opacity"?: undefined;
415
+ "line-offset"?: undefined;
416
+ "text-color"?: undefined;
417
+ "line-blur"?: undefined;
418
+ "icon-opacity"?: undefined;
419
+ "icon-color"?: undefined;
420
+ "text-opacity"?: undefined;
421
+ "text-halo-width"?: undefined;
422
+ "text-halo-color"?: undefined;
423
+ "circle-color"?: undefined;
424
+ "circle-radius"?: undefined;
425
+ "circle-stroke-color"?: undefined;
426
+ "circle-stroke-width"?: undefined;
427
+ };
428
+ source?: undefined;
429
+ layout?: undefined;
430
+ "source-layer"?: undefined;
431
+ filter?: undefined;
432
+ maxzoom?: undefined;
433
+ minzoom?: undefined;
434
+ } | {
435
+ id: string;
436
+ type: string;
437
+ source: string;
438
+ metadata: {
439
+ group: string;
440
+ type: string;
441
+ "legend-name": string;
442
+ desc: string;
443
+ "insert-before": string;
444
+ "sub-group"?: undefined;
445
+ source?: undefined;
446
+ };
447
+ layout: {
448
+ visibility: string;
449
+ "fill-sort-key"?: undefined;
450
+ "line-cap"?: undefined;
451
+ "line-join"?: undefined;
452
+ "line-sort-key"?: undefined;
453
+ "symbol-placement"?: undefined;
454
+ "symbol-spacing"?: undefined;
455
+ "text-field"?: undefined;
456
+ "text-font"?: undefined;
457
+ "text-offset"?: undefined;
458
+ "text-transform"?: undefined;
459
+ "text-size"?: undefined;
460
+ "text-max-angle"?: undefined;
461
+ "icon-image"?: undefined;
462
+ "icon-padding"?: undefined;
463
+ "icon-rotate"?: undefined;
464
+ "icon-rotation-alignment"?: undefined;
465
+ "icon-size"?: undefined;
466
+ "text-anchor"?: undefined;
467
+ "text-line-height"?: undefined;
468
+ "text-justify"?: undefined;
469
+ "text-rotate"?: undefined;
470
+ "symbol-sort-key"?: undefined;
471
+ "text-padding"?: undefined;
472
+ "text-rotation-alignment"?: undefined;
473
+ "text-letter-spacing"?: undefined;
474
+ "icon-ignore-placement"?: undefined;
475
+ "icon-allow-overlap"?: undefined;
476
+ "icon-offset"?: undefined;
477
+ };
478
+ paint: {
479
+ "background-color"?: undefined;
480
+ "fill-color"?: undefined;
481
+ "fill-outline-color"?: undefined;
482
+ "fill-opacity"?: undefined;
483
+ "line-dasharray"?: undefined;
484
+ "line-color"?: undefined;
485
+ "line-width"?: undefined;
486
+ "line-opacity"?: undefined;
487
+ "line-offset"?: undefined;
488
+ "text-color"?: undefined;
489
+ "line-blur"?: undefined;
490
+ "icon-opacity"?: undefined;
491
+ "icon-color"?: undefined;
492
+ "text-opacity"?: undefined;
493
+ "text-halo-width"?: undefined;
494
+ "text-halo-color"?: undefined;
495
+ "circle-color"?: undefined;
496
+ "circle-radius"?: undefined;
497
+ "circle-stroke-color"?: undefined;
498
+ "circle-stroke-width"?: undefined;
499
+ };
500
+ "source-layer"?: undefined;
501
+ filter?: undefined;
502
+ maxzoom?: undefined;
503
+ minzoom?: undefined;
504
+ } | {
505
+ id: string;
506
+ type: string;
507
+ source: string;
508
+ "source-layer": string;
509
+ metadata: {
510
+ group: string;
511
+ "sub-group": string;
512
+ type: string;
513
+ "legend-name": string;
514
+ source: string;
515
+ desc: string;
516
+ "insert-before": string;
517
+ };
518
+ layout: {
519
+ visibility: string;
520
+ "fill-sort-key"?: undefined;
521
+ "line-cap"?: undefined;
522
+ "line-join"?: undefined;
523
+ "line-sort-key"?: undefined;
524
+ "symbol-placement"?: undefined;
525
+ "symbol-spacing"?: undefined;
526
+ "text-field"?: undefined;
527
+ "text-font"?: undefined;
528
+ "text-offset"?: undefined;
529
+ "text-transform"?: undefined;
530
+ "text-size"?: undefined;
531
+ "text-max-angle"?: undefined;
532
+ "icon-image"?: undefined;
533
+ "icon-padding"?: undefined;
534
+ "icon-rotate"?: undefined;
535
+ "icon-rotation-alignment"?: undefined;
536
+ "icon-size"?: undefined;
537
+ "text-anchor"?: undefined;
538
+ "text-line-height"?: undefined;
539
+ "text-justify"?: undefined;
540
+ "text-rotate"?: undefined;
541
+ "symbol-sort-key"?: undefined;
542
+ "text-padding"?: undefined;
543
+ "text-rotation-alignment"?: undefined;
544
+ "text-letter-spacing"?: undefined;
545
+ "icon-ignore-placement"?: undefined;
546
+ "icon-allow-overlap"?: undefined;
547
+ "icon-offset"?: undefined;
548
+ };
549
+ paint: {
550
+ "fill-color": (string | string[])[];
551
+ "background-color"?: undefined;
552
+ "fill-outline-color"?: undefined;
553
+ "fill-opacity"?: undefined;
554
+ "line-dasharray"?: undefined;
555
+ "line-color"?: undefined;
556
+ "line-width"?: undefined;
557
+ "line-opacity"?: undefined;
558
+ "line-offset"?: undefined;
559
+ "text-color"?: undefined;
560
+ "line-blur"?: undefined;
561
+ "icon-opacity"?: undefined;
562
+ "icon-color"?: undefined;
563
+ "text-opacity"?: undefined;
564
+ "text-halo-width"?: undefined;
565
+ "text-halo-color"?: undefined;
566
+ "circle-color"?: undefined;
567
+ "circle-radius"?: undefined;
568
+ "circle-stroke-color"?: undefined;
569
+ "circle-stroke-width"?: undefined;
570
+ };
571
+ filter?: undefined;
572
+ maxzoom?: undefined;
573
+ minzoom?: undefined;
574
+ } | {
575
+ id: string;
576
+ type: string;
577
+ metadata: {
578
+ group: string;
579
+ "sub-group": string;
580
+ type: string;
581
+ "legend-name": string;
582
+ desc: string;
583
+ "insert-before": string;
584
+ source?: undefined;
585
+ };
586
+ source: string;
587
+ "source-layer": string;
588
+ filter: (string | string[])[];
589
+ paint: {
590
+ "fill-color": (string | string[])[];
591
+ "fill-outline-color": string;
592
+ "fill-opacity": (string | number | string[])[];
593
+ "background-color"?: undefined;
594
+ "line-dasharray"?: undefined;
595
+ "line-color"?: undefined;
596
+ "line-width"?: undefined;
597
+ "line-opacity"?: undefined;
598
+ "line-offset"?: undefined;
599
+ "text-color"?: undefined;
600
+ "line-blur"?: undefined;
601
+ "icon-opacity"?: undefined;
602
+ "icon-color"?: undefined;
603
+ "text-opacity"?: undefined;
604
+ "text-halo-width"?: undefined;
605
+ "text-halo-color"?: undefined;
606
+ "circle-color"?: undefined;
607
+ "circle-radius"?: undefined;
608
+ "circle-stroke-color"?: undefined;
609
+ "circle-stroke-width"?: undefined;
610
+ };
611
+ layout?: undefined;
612
+ maxzoom?: undefined;
613
+ minzoom?: undefined;
614
+ } | {
615
+ id: string;
616
+ type: string;
617
+ metadata: {
618
+ group: string;
619
+ "sub-group": string;
620
+ type: string;
621
+ "legend-name": string;
622
+ desc: string;
623
+ "insert-before": string;
624
+ source?: undefined;
625
+ };
626
+ source: string;
627
+ "source-layer": string;
628
+ maxzoom: number;
629
+ layout: {
630
+ visibility: string;
631
+ "fill-sort-key"?: undefined;
632
+ "line-cap"?: undefined;
633
+ "line-join"?: undefined;
634
+ "line-sort-key"?: undefined;
635
+ "symbol-placement"?: undefined;
636
+ "symbol-spacing"?: undefined;
637
+ "text-field"?: undefined;
638
+ "text-font"?: undefined;
639
+ "text-offset"?: undefined;
640
+ "text-transform"?: undefined;
641
+ "text-size"?: undefined;
642
+ "text-max-angle"?: undefined;
643
+ "icon-image"?: undefined;
644
+ "icon-padding"?: undefined;
645
+ "icon-rotate"?: undefined;
646
+ "icon-rotation-alignment"?: undefined;
647
+ "icon-size"?: undefined;
648
+ "text-anchor"?: undefined;
649
+ "text-line-height"?: undefined;
650
+ "text-justify"?: undefined;
651
+ "text-rotate"?: undefined;
652
+ "symbol-sort-key"?: undefined;
653
+ "text-padding"?: undefined;
654
+ "text-rotation-alignment"?: undefined;
655
+ "text-letter-spacing"?: undefined;
656
+ "icon-ignore-placement"?: undefined;
657
+ "icon-allow-overlap"?: undefined;
658
+ "icon-offset"?: undefined;
659
+ };
660
+ paint: {
661
+ "fill-color": (string | string[])[];
662
+ "background-color"?: undefined;
663
+ "fill-outline-color"?: undefined;
664
+ "fill-opacity"?: undefined;
665
+ "line-dasharray"?: undefined;
666
+ "line-color"?: undefined;
667
+ "line-width"?: undefined;
668
+ "line-opacity"?: undefined;
669
+ "line-offset"?: undefined;
670
+ "text-color"?: undefined;
671
+ "line-blur"?: undefined;
672
+ "icon-opacity"?: undefined;
673
+ "icon-color"?: undefined;
674
+ "text-opacity"?: undefined;
675
+ "text-halo-width"?: undefined;
676
+ "text-halo-color"?: undefined;
677
+ "circle-color"?: undefined;
678
+ "circle-radius"?: undefined;
679
+ "circle-stroke-color"?: undefined;
680
+ "circle-stroke-width"?: undefined;
681
+ };
682
+ filter?: undefined;
683
+ minzoom?: undefined;
684
+ } | {
685
+ id: string;
686
+ type: string;
687
+ source: string;
688
+ "source-layer": string;
689
+ metadata: {
690
+ group: string;
691
+ "sub-group": string;
692
+ type: string;
693
+ "legend-name": string;
694
+ desc: string;
695
+ "insert-before": string;
696
+ source?: undefined;
697
+ };
698
+ filter: (string | (string | number)[])[];
699
+ paint: {
700
+ "fill-color": string;
701
+ "background-color"?: undefined;
702
+ "fill-outline-color"?: undefined;
703
+ "fill-opacity"?: undefined;
704
+ "line-dasharray"?: undefined;
705
+ "line-color"?: undefined;
706
+ "line-width"?: undefined;
707
+ "line-opacity"?: undefined;
708
+ "line-offset"?: undefined;
709
+ "text-color"?: undefined;
710
+ "line-blur"?: undefined;
711
+ "icon-opacity"?: undefined;
712
+ "icon-color"?: undefined;
713
+ "text-opacity"?: undefined;
714
+ "text-halo-width"?: undefined;
715
+ "text-halo-color"?: undefined;
716
+ "circle-color"?: undefined;
717
+ "circle-radius"?: undefined;
718
+ "circle-stroke-color"?: undefined;
719
+ "circle-stroke-width"?: undefined;
720
+ };
721
+ layout?: undefined;
722
+ maxzoom?: undefined;
723
+ minzoom?: undefined;
724
+ } | {
725
+ id: string;
726
+ type: string;
727
+ source: string;
728
+ "source-layer": string;
729
+ metadata: {
730
+ group: string;
731
+ "sub-group": string;
732
+ type: string;
733
+ "legend-name": string;
734
+ desc: string;
735
+ "insert-before": string;
736
+ source?: undefined;
737
+ };
738
+ minzoom: number;
739
+ maxzoom: number;
740
+ filter: (string | string[])[];
741
+ paint: {
742
+ "fill-color": (string | number | string[])[];
743
+ "fill-outline-color": string;
744
+ "background-color"?: undefined;
745
+ "fill-opacity"?: undefined;
746
+ "line-dasharray"?: undefined;
747
+ "line-color"?: undefined;
748
+ "line-width"?: undefined;
749
+ "line-opacity"?: undefined;
750
+ "line-offset"?: undefined;
751
+ "text-color"?: undefined;
752
+ "line-blur"?: undefined;
753
+ "icon-opacity"?: undefined;
754
+ "icon-color"?: undefined;
755
+ "text-opacity"?: undefined;
756
+ "text-halo-width"?: undefined;
757
+ "text-halo-color"?: undefined;
758
+ "circle-color"?: undefined;
759
+ "circle-radius"?: undefined;
760
+ "circle-stroke-color"?: undefined;
761
+ "circle-stroke-width"?: undefined;
762
+ };
763
+ layout?: undefined;
764
+ } | {
765
+ id: string;
766
+ type: string;
767
+ source: string;
768
+ "source-layer": string;
769
+ metadata: {
770
+ group: string;
771
+ "sub-group": string;
772
+ type: string;
773
+ "legend-name": string;
774
+ desc: string;
775
+ "insert-before": string;
776
+ source?: undefined;
777
+ };
778
+ minzoom: number;
779
+ maxzoom: number;
780
+ filter: (string | string[])[];
781
+ paint: {
782
+ "fill-color": (string | string[])[];
783
+ "background-color"?: undefined;
784
+ "fill-outline-color"?: undefined;
785
+ "fill-opacity"?: undefined;
786
+ "line-dasharray"?: undefined;
787
+ "line-color"?: undefined;
788
+ "line-width"?: undefined;
789
+ "line-opacity"?: undefined;
790
+ "line-offset"?: undefined;
791
+ "text-color"?: undefined;
792
+ "line-blur"?: undefined;
793
+ "icon-opacity"?: undefined;
794
+ "icon-color"?: undefined;
795
+ "text-opacity"?: undefined;
796
+ "text-halo-width"?: undefined;
797
+ "text-halo-color"?: undefined;
798
+ "circle-color"?: undefined;
799
+ "circle-radius"?: undefined;
800
+ "circle-stroke-color"?: undefined;
801
+ "circle-stroke-width"?: undefined;
802
+ };
803
+ layout?: undefined;
804
+ } | {
805
+ id: string;
806
+ type: string;
807
+ source: string;
808
+ "source-layer": string;
809
+ metadata: {
810
+ group: string;
811
+ "sub-group": string;
812
+ type: string;
813
+ "legend-name": string;
814
+ desc: string;
815
+ "insert-before": string;
816
+ source?: undefined;
817
+ };
818
+ filter: (string | (string | number)[])[];
819
+ layout: {
820
+ "fill-sort-key": (string | string[])[];
821
+ visibility?: undefined;
822
+ "line-cap"?: undefined;
823
+ "line-join"?: undefined;
824
+ "line-sort-key"?: undefined;
825
+ "symbol-placement"?: undefined;
826
+ "symbol-spacing"?: undefined;
827
+ "text-field"?: undefined;
828
+ "text-font"?: undefined;
829
+ "text-offset"?: undefined;
830
+ "text-transform"?: undefined;
831
+ "text-size"?: undefined;
832
+ "text-max-angle"?: undefined;
833
+ "icon-image"?: undefined;
834
+ "icon-padding"?: undefined;
835
+ "icon-rotate"?: undefined;
836
+ "icon-rotation-alignment"?: undefined;
837
+ "icon-size"?: undefined;
838
+ "text-anchor"?: undefined;
839
+ "text-line-height"?: undefined;
840
+ "text-justify"?: undefined;
841
+ "text-rotate"?: undefined;
842
+ "symbol-sort-key"?: undefined;
843
+ "text-padding"?: undefined;
844
+ "text-rotation-alignment"?: undefined;
845
+ "text-letter-spacing"?: undefined;
846
+ "icon-ignore-placement"?: undefined;
847
+ "icon-allow-overlap"?: undefined;
848
+ "icon-offset"?: undefined;
849
+ };
850
+ paint: {
851
+ "fill-color": (string | string[])[];
852
+ "fill-outline-color": string;
853
+ "background-color"?: undefined;
854
+ "fill-opacity"?: undefined;
855
+ "line-dasharray"?: undefined;
856
+ "line-color"?: undefined;
857
+ "line-width"?: undefined;
858
+ "line-opacity"?: undefined;
859
+ "line-offset"?: undefined;
860
+ "text-color"?: undefined;
861
+ "line-blur"?: undefined;
862
+ "icon-opacity"?: undefined;
863
+ "icon-color"?: undefined;
864
+ "text-opacity"?: undefined;
865
+ "text-halo-width"?: undefined;
866
+ "text-halo-color"?: undefined;
867
+ "circle-color"?: undefined;
868
+ "circle-radius"?: undefined;
869
+ "circle-stroke-color"?: undefined;
870
+ "circle-stroke-width"?: undefined;
871
+ };
872
+ maxzoom?: undefined;
873
+ minzoom?: undefined;
874
+ } | {
875
+ id: string;
876
+ type: string;
877
+ source: string;
878
+ "source-layer": string;
879
+ metadata: {
880
+ group: string;
881
+ "sub-group": string;
882
+ type: string;
883
+ "legend-name": string;
884
+ desc: string;
885
+ "insert-before": string;
886
+ source?: undefined;
887
+ };
888
+ filter: (string | (string | number)[])[];
889
+ paint: {
890
+ "fill-color": (string | string[])[];
891
+ "background-color"?: undefined;
892
+ "fill-outline-color"?: undefined;
893
+ "fill-opacity"?: undefined;
894
+ "line-dasharray"?: undefined;
895
+ "line-color"?: undefined;
896
+ "line-width"?: undefined;
897
+ "line-opacity"?: undefined;
898
+ "line-offset"?: undefined;
899
+ "text-color"?: undefined;
900
+ "line-blur"?: undefined;
901
+ "icon-opacity"?: undefined;
902
+ "icon-color"?: undefined;
903
+ "text-opacity"?: undefined;
904
+ "text-halo-width"?: undefined;
905
+ "text-halo-color"?: undefined;
906
+ "circle-color"?: undefined;
907
+ "circle-radius"?: undefined;
908
+ "circle-stroke-color"?: undefined;
909
+ "circle-stroke-width"?: undefined;
910
+ };
911
+ layout?: undefined;
912
+ maxzoom?: undefined;
913
+ minzoom?: undefined;
914
+ } | {
915
+ id: string;
916
+ type: string;
917
+ source: string;
918
+ "source-layer": string;
919
+ metadata: {
920
+ group: string;
921
+ "sub-group": string;
922
+ type: string;
923
+ "legend-name": string;
924
+ desc: string;
925
+ "insert-before": string;
926
+ source?: undefined;
927
+ };
928
+ filter: (string | (string | number)[])[];
929
+ paint: {
930
+ "fill-color": (string | (string | string[])[])[];
931
+ "fill-outline-color": (string | (string | string[])[])[];
932
+ "background-color"?: undefined;
933
+ "fill-opacity"?: undefined;
934
+ "line-dasharray"?: undefined;
935
+ "line-color"?: undefined;
936
+ "line-width"?: undefined;
937
+ "line-opacity"?: undefined;
938
+ "line-offset"?: undefined;
939
+ "text-color"?: undefined;
940
+ "line-blur"?: undefined;
941
+ "icon-opacity"?: undefined;
942
+ "icon-color"?: undefined;
943
+ "text-opacity"?: undefined;
944
+ "text-halo-width"?: undefined;
945
+ "text-halo-color"?: undefined;
946
+ "circle-color"?: undefined;
947
+ "circle-radius"?: undefined;
948
+ "circle-stroke-color"?: undefined;
949
+ "circle-stroke-width"?: undefined;
950
+ };
951
+ layout?: undefined;
952
+ maxzoom?: undefined;
953
+ minzoom?: undefined;
954
+ } | {
955
+ id: string;
956
+ type: string;
957
+ metadata: {
958
+ group: string;
959
+ "sub-group": string;
960
+ type: string;
961
+ "legend-name": string;
962
+ desc: string;
963
+ "insert-before": string;
964
+ source?: undefined;
965
+ };
966
+ source: string;
967
+ "source-layer": string;
968
+ maxzoom: number;
969
+ paint: {
970
+ "fill-outline-color": string;
971
+ "fill-color": (string | number | string[])[];
972
+ "fill-opacity": (string | number | string[])[];
973
+ "background-color"?: undefined;
974
+ "line-dasharray"?: undefined;
975
+ "line-color"?: undefined;
976
+ "line-width"?: undefined;
977
+ "line-opacity"?: undefined;
978
+ "line-offset"?: undefined;
979
+ "text-color"?: undefined;
980
+ "line-blur"?: undefined;
981
+ "icon-opacity"?: undefined;
982
+ "icon-color"?: undefined;
983
+ "text-opacity"?: undefined;
984
+ "text-halo-width"?: undefined;
985
+ "text-halo-color"?: undefined;
986
+ "circle-color"?: undefined;
987
+ "circle-radius"?: undefined;
988
+ "circle-stroke-color"?: undefined;
989
+ "circle-stroke-width"?: undefined;
990
+ };
991
+ layout?: undefined;
992
+ filter?: undefined;
993
+ minzoom?: undefined;
994
+ } | {
995
+ id: string;
996
+ type: string;
997
+ source: string;
998
+ "source-layer": string;
999
+ metadata: {
1000
+ group: string;
1001
+ "sub-group": string;
1002
+ type: string;
1003
+ "legend-name": string;
1004
+ desc: string;
1005
+ "insert-before": string;
1006
+ source?: undefined;
1007
+ };
1008
+ paint: {
1009
+ "fill-color": string;
1010
+ "fill-outline-color": string;
1011
+ "background-color"?: undefined;
1012
+ "fill-opacity"?: undefined;
1013
+ "line-dasharray"?: undefined;
1014
+ "line-color"?: undefined;
1015
+ "line-width"?: undefined;
1016
+ "line-opacity"?: undefined;
1017
+ "line-offset"?: undefined;
1018
+ "text-color"?: undefined;
1019
+ "line-blur"?: undefined;
1020
+ "icon-opacity"?: undefined;
1021
+ "icon-color"?: undefined;
1022
+ "text-opacity"?: undefined;
1023
+ "text-halo-width"?: undefined;
1024
+ "text-halo-color"?: undefined;
1025
+ "circle-color"?: undefined;
1026
+ "circle-radius"?: undefined;
1027
+ "circle-stroke-color"?: undefined;
1028
+ "circle-stroke-width"?: undefined;
1029
+ };
1030
+ layout?: undefined;
1031
+ filter?: undefined;
1032
+ maxzoom?: undefined;
1033
+ minzoom?: undefined;
1034
+ } | {
1035
+ id: string;
1036
+ type: string;
1037
+ source: string;
1038
+ "source-layer": string;
1039
+ metadata: {
1040
+ group: string;
1041
+ "sub-group": string;
1042
+ type: string;
1043
+ "legend-name": string;
1044
+ desc: string;
1045
+ "insert-before": string;
1046
+ source?: undefined;
1047
+ };
1048
+ filter: (string | (string | string[])[])[];
1049
+ paint: {
1050
+ "fill-color": string;
1051
+ "fill-outline-color": string;
1052
+ "background-color"?: undefined;
1053
+ "fill-opacity"?: undefined;
1054
+ "line-dasharray"?: undefined;
1055
+ "line-color"?: undefined;
1056
+ "line-width"?: undefined;
1057
+ "line-opacity"?: undefined;
1058
+ "line-offset"?: undefined;
1059
+ "text-color"?: undefined;
1060
+ "line-blur"?: undefined;
1061
+ "icon-opacity"?: undefined;
1062
+ "icon-color"?: undefined;
1063
+ "text-opacity"?: undefined;
1064
+ "text-halo-width"?: undefined;
1065
+ "text-halo-color"?: undefined;
1066
+ "circle-color"?: undefined;
1067
+ "circle-radius"?: undefined;
1068
+ "circle-stroke-color"?: undefined;
1069
+ "circle-stroke-width"?: undefined;
1070
+ };
1071
+ layout?: undefined;
1072
+ maxzoom?: undefined;
1073
+ minzoom?: undefined;
1074
+ } | {
1075
+ id: string;
1076
+ type: string;
1077
+ source: string;
1078
+ "source-layer": string;
1079
+ metadata: {
1080
+ group: string;
1081
+ "sub-group": string;
1082
+ type: string;
1083
+ "legend-name": string;
1084
+ desc: string;
1085
+ "insert-before": string;
1086
+ source?: undefined;
1087
+ };
1088
+ filter: (string | (string | string[])[])[];
1089
+ layout: {
1090
+ visibility: string;
1091
+ "line-cap": string;
1092
+ "line-join": string;
1093
+ "line-sort-key": (string | number | (string | string[])[])[];
1094
+ "fill-sort-key"?: undefined;
1095
+ "symbol-placement"?: undefined;
1096
+ "symbol-spacing"?: undefined;
1097
+ "text-field"?: undefined;
1098
+ "text-font"?: undefined;
1099
+ "text-offset"?: undefined;
1100
+ "text-transform"?: undefined;
1101
+ "text-size"?: undefined;
1102
+ "text-max-angle"?: undefined;
1103
+ "icon-image"?: undefined;
1104
+ "icon-padding"?: undefined;
1105
+ "icon-rotate"?: undefined;
1106
+ "icon-rotation-alignment"?: undefined;
1107
+ "icon-size"?: undefined;
1108
+ "text-anchor"?: undefined;
1109
+ "text-line-height"?: undefined;
1110
+ "text-justify"?: undefined;
1111
+ "text-rotate"?: undefined;
1112
+ "symbol-sort-key"?: undefined;
1113
+ "text-padding"?: undefined;
1114
+ "text-rotation-alignment"?: undefined;
1115
+ "text-letter-spacing"?: undefined;
1116
+ "icon-ignore-placement"?: undefined;
1117
+ "icon-allow-overlap"?: undefined;
1118
+ "icon-offset"?: undefined;
1119
+ };
1120
+ paint: {
1121
+ "line-dasharray": number[];
1122
+ "line-color": (string | (string | (string | string[])[])[])[];
1123
+ "line-width": (string | number | (string | number | string[])[])[];
1124
+ "line-opacity": (string | number | string[])[];
1125
+ "background-color"?: undefined;
1126
+ "fill-color"?: undefined;
1127
+ "fill-outline-color"?: undefined;
1128
+ "fill-opacity"?: undefined;
1129
+ "line-offset"?: undefined;
1130
+ "text-color"?: undefined;
1131
+ "line-blur"?: undefined;
1132
+ "icon-opacity"?: undefined;
1133
+ "icon-color"?: undefined;
1134
+ "text-opacity"?: undefined;
1135
+ "text-halo-width"?: undefined;
1136
+ "text-halo-color"?: undefined;
1137
+ "circle-color"?: undefined;
1138
+ "circle-radius"?: undefined;
1139
+ "circle-stroke-color"?: undefined;
1140
+ "circle-stroke-width"?: undefined;
1141
+ };
1142
+ maxzoom?: undefined;
1143
+ minzoom?: undefined;
1144
+ } | {
1145
+ id: string;
1146
+ type: string;
1147
+ source: string;
1148
+ "source-layer": string;
1149
+ metadata: {
1150
+ group: string;
1151
+ "sub-group": string;
1152
+ type: string;
1153
+ "legend-name": string;
1154
+ desc: string;
1155
+ "insert-before": string;
1156
+ source?: undefined;
1157
+ };
1158
+ filter: (string | string[])[];
1159
+ layout: {
1160
+ visibility: string;
1161
+ "line-cap": string;
1162
+ "line-join": string;
1163
+ "fill-sort-key"?: undefined;
1164
+ "line-sort-key"?: undefined;
1165
+ "symbol-placement"?: undefined;
1166
+ "symbol-spacing"?: undefined;
1167
+ "text-field"?: undefined;
1168
+ "text-font"?: undefined;
1169
+ "text-offset"?: undefined;
1170
+ "text-transform"?: undefined;
1171
+ "text-size"?: undefined;
1172
+ "text-max-angle"?: undefined;
1173
+ "icon-image"?: undefined;
1174
+ "icon-padding"?: undefined;
1175
+ "icon-rotate"?: undefined;
1176
+ "icon-rotation-alignment"?: undefined;
1177
+ "icon-size"?: undefined;
1178
+ "text-anchor"?: undefined;
1179
+ "text-line-height"?: undefined;
1180
+ "text-justify"?: undefined;
1181
+ "text-rotate"?: undefined;
1182
+ "symbol-sort-key"?: undefined;
1183
+ "text-padding"?: undefined;
1184
+ "text-rotation-alignment"?: undefined;
1185
+ "text-letter-spacing"?: undefined;
1186
+ "icon-ignore-placement"?: undefined;
1187
+ "icon-allow-overlap"?: undefined;
1188
+ "icon-offset"?: undefined;
1189
+ };
1190
+ paint: {
1191
+ "line-color": (string | (string | (string | number | string[])[])[])[];
1192
+ "line-width": (string | number | (string | number)[])[];
1193
+ "line-opacity": number;
1194
+ "background-color"?: undefined;
1195
+ "fill-color"?: undefined;
1196
+ "fill-outline-color"?: undefined;
1197
+ "fill-opacity"?: undefined;
1198
+ "line-dasharray"?: undefined;
1199
+ "line-offset"?: undefined;
1200
+ "text-color"?: undefined;
1201
+ "line-blur"?: undefined;
1202
+ "icon-opacity"?: undefined;
1203
+ "icon-color"?: undefined;
1204
+ "text-opacity"?: undefined;
1205
+ "text-halo-width"?: undefined;
1206
+ "text-halo-color"?: undefined;
1207
+ "circle-color"?: undefined;
1208
+ "circle-radius"?: undefined;
1209
+ "circle-stroke-color"?: undefined;
1210
+ "circle-stroke-width"?: undefined;
1211
+ };
1212
+ maxzoom?: undefined;
1213
+ minzoom?: undefined;
1214
+ } | {
1215
+ id: string;
1216
+ type: string;
1217
+ source: string;
1218
+ "source-layer": string;
1219
+ metadata: {
1220
+ group: string;
1221
+ "sub-group": string;
1222
+ type: string;
1223
+ "legend-name": string;
1224
+ desc: string;
1225
+ "insert-before": string;
1226
+ source?: undefined;
1227
+ };
1228
+ filter: (string | (string | string[])[])[];
1229
+ layout: {
1230
+ visibility: string;
1231
+ "line-cap": string;
1232
+ "line-join": string;
1233
+ "line-sort-key": (string | number | (string | string[])[])[];
1234
+ "fill-sort-key"?: undefined;
1235
+ "symbol-placement"?: undefined;
1236
+ "symbol-spacing"?: undefined;
1237
+ "text-field"?: undefined;
1238
+ "text-font"?: undefined;
1239
+ "text-offset"?: undefined;
1240
+ "text-transform"?: undefined;
1241
+ "text-size"?: undefined;
1242
+ "text-max-angle"?: undefined;
1243
+ "icon-image"?: undefined;
1244
+ "icon-padding"?: undefined;
1245
+ "icon-rotate"?: undefined;
1246
+ "icon-rotation-alignment"?: undefined;
1247
+ "icon-size"?: undefined;
1248
+ "text-anchor"?: undefined;
1249
+ "text-line-height"?: undefined;
1250
+ "text-justify"?: undefined;
1251
+ "text-rotate"?: undefined;
1252
+ "symbol-sort-key"?: undefined;
1253
+ "text-padding"?: undefined;
1254
+ "text-rotation-alignment"?: undefined;
1255
+ "text-letter-spacing"?: undefined;
1256
+ "icon-ignore-placement"?: undefined;
1257
+ "icon-allow-overlap"?: undefined;
1258
+ "icon-offset"?: undefined;
1259
+ };
1260
+ paint: {
1261
+ "line-color": (string | (string | (string | (string | string[])[])[])[] | (string | (string | number | string[])[])[])[];
1262
+ "line-width": (string | number | (string | number | string[])[])[];
1263
+ "line-opacity": number;
1264
+ "background-color"?: undefined;
1265
+ "fill-color"?: undefined;
1266
+ "fill-outline-color"?: undefined;
1267
+ "fill-opacity"?: undefined;
1268
+ "line-dasharray"?: undefined;
1269
+ "line-offset"?: undefined;
1270
+ "text-color"?: undefined;
1271
+ "line-blur"?: undefined;
1272
+ "icon-opacity"?: undefined;
1273
+ "icon-color"?: undefined;
1274
+ "text-opacity"?: undefined;
1275
+ "text-halo-width"?: undefined;
1276
+ "text-halo-color"?: undefined;
1277
+ "circle-color"?: undefined;
1278
+ "circle-radius"?: undefined;
1279
+ "circle-stroke-color"?: undefined;
1280
+ "circle-stroke-width"?: undefined;
1281
+ };
1282
+ maxzoom?: undefined;
1283
+ minzoom?: undefined;
1284
+ } | {
1285
+ id: string;
1286
+ type: string;
1287
+ source: string;
1288
+ "source-layer": string;
1289
+ metadata: {
1290
+ group: string;
1291
+ "sub-group": string;
1292
+ type: string;
1293
+ "legend-name": string;
1294
+ desc: string;
1295
+ "insert-before"?: undefined;
1296
+ source?: undefined;
1297
+ };
1298
+ layout: {
1299
+ visibility: string;
1300
+ "line-cap": string;
1301
+ "line-join": string;
1302
+ "line-sort-key": (string | number | string[])[];
1303
+ "fill-sort-key"?: undefined;
1304
+ "symbol-placement"?: undefined;
1305
+ "symbol-spacing"?: undefined;
1306
+ "text-field"?: undefined;
1307
+ "text-font"?: undefined;
1308
+ "text-offset"?: undefined;
1309
+ "text-transform"?: undefined;
1310
+ "text-size"?: undefined;
1311
+ "text-max-angle"?: undefined;
1312
+ "icon-image"?: undefined;
1313
+ "icon-padding"?: undefined;
1314
+ "icon-rotate"?: undefined;
1315
+ "icon-rotation-alignment"?: undefined;
1316
+ "icon-size"?: undefined;
1317
+ "text-anchor"?: undefined;
1318
+ "text-line-height"?: undefined;
1319
+ "text-justify"?: undefined;
1320
+ "text-rotate"?: undefined;
1321
+ "symbol-sort-key"?: undefined;
1322
+ "text-padding"?: undefined;
1323
+ "text-rotation-alignment"?: undefined;
1324
+ "text-letter-spacing"?: undefined;
1325
+ "icon-ignore-placement"?: undefined;
1326
+ "icon-allow-overlap"?: undefined;
1327
+ "icon-offset"?: undefined;
1328
+ };
1329
+ paint: {
1330
+ "line-color": (string | number | (string | (string | number | string[])[])[] | (string | (string | (string | number | string[])[])[])[])[];
1331
+ "line-width": (string | number | (string | number | string[])[])[];
1332
+ "line-opacity": (string | number | string[])[];
1333
+ "background-color"?: undefined;
1334
+ "fill-color"?: undefined;
1335
+ "fill-outline-color"?: undefined;
1336
+ "fill-opacity"?: undefined;
1337
+ "line-dasharray"?: undefined;
1338
+ "line-offset"?: undefined;
1339
+ "text-color"?: undefined;
1340
+ "line-blur"?: undefined;
1341
+ "icon-opacity"?: undefined;
1342
+ "icon-color"?: undefined;
1343
+ "text-opacity"?: undefined;
1344
+ "text-halo-width"?: undefined;
1345
+ "text-halo-color"?: undefined;
1346
+ "circle-color"?: undefined;
1347
+ "circle-radius"?: undefined;
1348
+ "circle-stroke-color"?: undefined;
1349
+ "circle-stroke-width"?: undefined;
1350
+ };
1351
+ filter?: undefined;
1352
+ maxzoom?: undefined;
1353
+ minzoom?: undefined;
1354
+ } | {
1355
+ id: string;
1356
+ type: string;
1357
+ source: string;
1358
+ "source-layer": string;
1359
+ metadata: {
1360
+ group: string;
1361
+ "sub-group": string;
1362
+ type: string;
1363
+ "legend-name": string;
1364
+ desc: string;
1365
+ "insert-before": string;
1366
+ source?: undefined;
1367
+ };
1368
+ filter: (string | number)[];
1369
+ minzoom: number;
1370
+ layout: {
1371
+ visibility: string;
1372
+ "line-cap": string;
1373
+ "line-join": string;
1374
+ "fill-sort-key"?: undefined;
1375
+ "line-sort-key"?: undefined;
1376
+ "symbol-placement"?: undefined;
1377
+ "symbol-spacing"?: undefined;
1378
+ "text-field"?: undefined;
1379
+ "text-font"?: undefined;
1380
+ "text-offset"?: undefined;
1381
+ "text-transform"?: undefined;
1382
+ "text-size"?: undefined;
1383
+ "text-max-angle"?: undefined;
1384
+ "icon-image"?: undefined;
1385
+ "icon-padding"?: undefined;
1386
+ "icon-rotate"?: undefined;
1387
+ "icon-rotation-alignment"?: undefined;
1388
+ "icon-size"?: undefined;
1389
+ "text-anchor"?: undefined;
1390
+ "text-line-height"?: undefined;
1391
+ "text-justify"?: undefined;
1392
+ "text-rotate"?: undefined;
1393
+ "symbol-sort-key"?: undefined;
1394
+ "text-padding"?: undefined;
1395
+ "text-rotation-alignment"?: undefined;
1396
+ "text-letter-spacing"?: undefined;
1397
+ "icon-ignore-placement"?: undefined;
1398
+ "icon-allow-overlap"?: undefined;
1399
+ "icon-offset"?: undefined;
1400
+ };
1401
+ paint: {
1402
+ "line-offset": (string | number | (string | (string | number | (string | string[])[])[])[])[];
1403
+ "line-color": string;
1404
+ "line-opacity": number;
1405
+ "line-width": (string | number | string[])[];
1406
+ "background-color"?: undefined;
1407
+ "fill-color"?: undefined;
1408
+ "fill-outline-color"?: undefined;
1409
+ "fill-opacity"?: undefined;
1410
+ "line-dasharray"?: undefined;
1411
+ "text-color"?: undefined;
1412
+ "line-blur"?: undefined;
1413
+ "icon-opacity"?: undefined;
1414
+ "icon-color"?: undefined;
1415
+ "text-opacity"?: undefined;
1416
+ "text-halo-width"?: undefined;
1417
+ "text-halo-color"?: undefined;
1418
+ "circle-color"?: undefined;
1419
+ "circle-radius"?: undefined;
1420
+ "circle-stroke-color"?: undefined;
1421
+ "circle-stroke-width"?: undefined;
1422
+ };
1423
+ maxzoom?: undefined;
1424
+ } | {
1425
+ id: string;
1426
+ type: string;
1427
+ source: string;
1428
+ "source-layer": string;
1429
+ minzoom: number;
1430
+ metadata: {
1431
+ group: string;
1432
+ "sub-group": string;
1433
+ type: string;
1434
+ "legend-name": string;
1435
+ desc: string;
1436
+ "insert-before": string;
1437
+ source?: undefined;
1438
+ };
1439
+ layout: {
1440
+ visibility: string;
1441
+ "line-cap": string;
1442
+ "line-join": string;
1443
+ "fill-sort-key"?: undefined;
1444
+ "line-sort-key"?: undefined;
1445
+ "symbol-placement"?: undefined;
1446
+ "symbol-spacing"?: undefined;
1447
+ "text-field"?: undefined;
1448
+ "text-font"?: undefined;
1449
+ "text-offset"?: undefined;
1450
+ "text-transform"?: undefined;
1451
+ "text-size"?: undefined;
1452
+ "text-max-angle"?: undefined;
1453
+ "icon-image"?: undefined;
1454
+ "icon-padding"?: undefined;
1455
+ "icon-rotate"?: undefined;
1456
+ "icon-rotation-alignment"?: undefined;
1457
+ "icon-size"?: undefined;
1458
+ "text-anchor"?: undefined;
1459
+ "text-line-height"?: undefined;
1460
+ "text-justify"?: undefined;
1461
+ "text-rotate"?: undefined;
1462
+ "symbol-sort-key"?: undefined;
1463
+ "text-padding"?: undefined;
1464
+ "text-rotation-alignment"?: undefined;
1465
+ "text-letter-spacing"?: undefined;
1466
+ "icon-ignore-placement"?: undefined;
1467
+ "icon-allow-overlap"?: undefined;
1468
+ "icon-offset"?: undefined;
1469
+ };
1470
+ paint: {
1471
+ "line-color": (string | string[])[];
1472
+ "line-width": (string | number | (string | number | string[])[])[];
1473
+ "line-opacity": (string | number | string[])[];
1474
+ "background-color"?: undefined;
1475
+ "fill-color"?: undefined;
1476
+ "fill-outline-color"?: undefined;
1477
+ "fill-opacity"?: undefined;
1478
+ "line-dasharray"?: undefined;
1479
+ "line-offset"?: undefined;
1480
+ "text-color"?: undefined;
1481
+ "line-blur"?: undefined;
1482
+ "icon-opacity"?: undefined;
1483
+ "icon-color"?: undefined;
1484
+ "text-opacity"?: undefined;
1485
+ "text-halo-width"?: undefined;
1486
+ "text-halo-color"?: undefined;
1487
+ "circle-color"?: undefined;
1488
+ "circle-radius"?: undefined;
1489
+ "circle-stroke-color"?: undefined;
1490
+ "circle-stroke-width"?: undefined;
1491
+ };
1492
+ filter?: undefined;
1493
+ maxzoom?: undefined;
1494
+ } | {
1495
+ id: string;
1496
+ type: string;
1497
+ source: string;
1498
+ "source-layer": string;
1499
+ minzoom: number;
1500
+ metadata: {
1501
+ group: string;
1502
+ "sub-group": string;
1503
+ type: string;
1504
+ "legend-name": string;
1505
+ desc: string;
1506
+ "insert-before": string;
1507
+ source?: undefined;
1508
+ };
1509
+ filter: (string | (string | string[])[])[];
1510
+ layout: {
1511
+ visibility: string;
1512
+ "line-cap": string;
1513
+ "line-join": string;
1514
+ "fill-sort-key"?: undefined;
1515
+ "line-sort-key"?: undefined;
1516
+ "symbol-placement"?: undefined;
1517
+ "symbol-spacing"?: undefined;
1518
+ "text-field"?: undefined;
1519
+ "text-font"?: undefined;
1520
+ "text-offset"?: undefined;
1521
+ "text-transform"?: undefined;
1522
+ "text-size"?: undefined;
1523
+ "text-max-angle"?: undefined;
1524
+ "icon-image"?: undefined;
1525
+ "icon-padding"?: undefined;
1526
+ "icon-rotate"?: undefined;
1527
+ "icon-rotation-alignment"?: undefined;
1528
+ "icon-size"?: undefined;
1529
+ "text-anchor"?: undefined;
1530
+ "text-line-height"?: undefined;
1531
+ "text-justify"?: undefined;
1532
+ "text-rotate"?: undefined;
1533
+ "symbol-sort-key"?: undefined;
1534
+ "text-padding"?: undefined;
1535
+ "text-rotation-alignment"?: undefined;
1536
+ "text-letter-spacing"?: undefined;
1537
+ "icon-ignore-placement"?: undefined;
1538
+ "icon-allow-overlap"?: undefined;
1539
+ "icon-offset"?: undefined;
1540
+ };
1541
+ paint: {
1542
+ "line-dasharray": number[];
1543
+ "line-color": (string | string[])[];
1544
+ "line-width": (string | number | (string | number | string[])[])[];
1545
+ "line-opacity": (string | number | string[])[];
1546
+ "background-color"?: undefined;
1547
+ "fill-color"?: undefined;
1548
+ "fill-outline-color"?: undefined;
1549
+ "fill-opacity"?: undefined;
1550
+ "line-offset"?: undefined;
1551
+ "text-color"?: undefined;
1552
+ "line-blur"?: undefined;
1553
+ "icon-opacity"?: undefined;
1554
+ "icon-color"?: undefined;
1555
+ "text-opacity"?: undefined;
1556
+ "text-halo-width"?: undefined;
1557
+ "text-halo-color"?: undefined;
1558
+ "circle-color"?: undefined;
1559
+ "circle-radius"?: undefined;
1560
+ "circle-stroke-color"?: undefined;
1561
+ "circle-stroke-width"?: undefined;
1562
+ };
1563
+ maxzoom?: undefined;
1564
+ } | {
1565
+ id: string;
1566
+ type: string;
1567
+ metadata: {
1568
+ group: string;
1569
+ "sub-group": string;
1570
+ type: string;
1571
+ "legend-name": string;
1572
+ desc: string;
1573
+ "insert-before": string;
1574
+ source?: undefined;
1575
+ };
1576
+ source: string;
1577
+ "source-layer": string;
1578
+ layout: {
1579
+ visibility: string;
1580
+ "line-cap": string;
1581
+ "line-join": string;
1582
+ "fill-sort-key"?: undefined;
1583
+ "line-sort-key"?: undefined;
1584
+ "symbol-placement"?: undefined;
1585
+ "symbol-spacing"?: undefined;
1586
+ "text-field"?: undefined;
1587
+ "text-font"?: undefined;
1588
+ "text-offset"?: undefined;
1589
+ "text-transform"?: undefined;
1590
+ "text-size"?: undefined;
1591
+ "text-max-angle"?: undefined;
1592
+ "icon-image"?: undefined;
1593
+ "icon-padding"?: undefined;
1594
+ "icon-rotate"?: undefined;
1595
+ "icon-rotation-alignment"?: undefined;
1596
+ "icon-size"?: undefined;
1597
+ "text-anchor"?: undefined;
1598
+ "text-line-height"?: undefined;
1599
+ "text-justify"?: undefined;
1600
+ "text-rotate"?: undefined;
1601
+ "symbol-sort-key"?: undefined;
1602
+ "text-padding"?: undefined;
1603
+ "text-rotation-alignment"?: undefined;
1604
+ "text-letter-spacing"?: undefined;
1605
+ "icon-ignore-placement"?: undefined;
1606
+ "icon-allow-overlap"?: undefined;
1607
+ "icon-offset"?: undefined;
1608
+ };
1609
+ paint: {
1610
+ "line-color": string;
1611
+ "line-width": (string | number | string[])[];
1612
+ "background-color"?: undefined;
1613
+ "fill-color"?: undefined;
1614
+ "fill-outline-color"?: undefined;
1615
+ "fill-opacity"?: undefined;
1616
+ "line-dasharray"?: undefined;
1617
+ "line-opacity"?: undefined;
1618
+ "line-offset"?: undefined;
1619
+ "text-color"?: undefined;
1620
+ "line-blur"?: undefined;
1621
+ "icon-opacity"?: undefined;
1622
+ "icon-color"?: undefined;
1623
+ "text-opacity"?: undefined;
1624
+ "text-halo-width"?: undefined;
1625
+ "text-halo-color"?: undefined;
1626
+ "circle-color"?: undefined;
1627
+ "circle-radius"?: undefined;
1628
+ "circle-stroke-color"?: undefined;
1629
+ "circle-stroke-width"?: undefined;
1630
+ };
1631
+ filter?: undefined;
1632
+ maxzoom?: undefined;
1633
+ minzoom?: undefined;
1634
+ } | {
1635
+ id: string;
1636
+ type: string;
1637
+ metadata: {
1638
+ group: string;
1639
+ "sub-group": string;
1640
+ type: string;
1641
+ "legend-name": string;
1642
+ desc: string;
1643
+ "insert-before": string;
1644
+ source?: undefined;
1645
+ };
1646
+ source: string;
1647
+ "source-layer": string;
1648
+ minzoom: number;
1649
+ layout: {
1650
+ visibility: string;
1651
+ "symbol-placement": string;
1652
+ "symbol-spacing": (string | number | string[])[];
1653
+ "text-field": string;
1654
+ "text-font": string[];
1655
+ "text-offset": number[];
1656
+ "text-transform": string;
1657
+ "text-size": (string | number | string[])[];
1658
+ "text-max-angle": number;
1659
+ "fill-sort-key"?: undefined;
1660
+ "line-cap"?: undefined;
1661
+ "line-join"?: undefined;
1662
+ "line-sort-key"?: undefined;
1663
+ "icon-image"?: undefined;
1664
+ "icon-padding"?: undefined;
1665
+ "icon-rotate"?: undefined;
1666
+ "icon-rotation-alignment"?: undefined;
1667
+ "icon-size"?: undefined;
1668
+ "text-anchor"?: undefined;
1669
+ "text-line-height"?: undefined;
1670
+ "text-justify"?: undefined;
1671
+ "text-rotate"?: undefined;
1672
+ "symbol-sort-key"?: undefined;
1673
+ "text-padding"?: undefined;
1674
+ "text-rotation-alignment"?: undefined;
1675
+ "text-letter-spacing"?: undefined;
1676
+ "icon-ignore-placement"?: undefined;
1677
+ "icon-allow-overlap"?: undefined;
1678
+ "icon-offset"?: undefined;
1679
+ };
1680
+ paint: {
1681
+ "text-color": string;
1682
+ "background-color"?: undefined;
1683
+ "fill-color"?: undefined;
1684
+ "fill-outline-color"?: undefined;
1685
+ "fill-opacity"?: undefined;
1686
+ "line-dasharray"?: undefined;
1687
+ "line-color"?: undefined;
1688
+ "line-width"?: undefined;
1689
+ "line-opacity"?: undefined;
1690
+ "line-offset"?: undefined;
1691
+ "line-blur"?: undefined;
1692
+ "icon-opacity"?: undefined;
1693
+ "icon-color"?: undefined;
1694
+ "text-opacity"?: undefined;
1695
+ "text-halo-width"?: undefined;
1696
+ "text-halo-color"?: undefined;
1697
+ "circle-color"?: undefined;
1698
+ "circle-radius"?: undefined;
1699
+ "circle-stroke-color"?: undefined;
1700
+ "circle-stroke-width"?: undefined;
1701
+ };
1702
+ filter?: undefined;
1703
+ maxzoom?: undefined;
1704
+ } | {
1705
+ id: string;
1706
+ type: string;
1707
+ metadata: {
1708
+ group: string;
1709
+ "sub-group": string;
1710
+ type: string;
1711
+ "legend-name": string;
1712
+ desc: string;
1713
+ "insert-before": string;
1714
+ source?: undefined;
1715
+ };
1716
+ source: string;
1717
+ "source-layer": string;
1718
+ minzoom: number;
1719
+ layout: {
1720
+ visibility: string;
1721
+ "line-cap": string;
1722
+ "line-join": string;
1723
+ "fill-sort-key"?: undefined;
1724
+ "line-sort-key"?: undefined;
1725
+ "symbol-placement"?: undefined;
1726
+ "symbol-spacing"?: undefined;
1727
+ "text-field"?: undefined;
1728
+ "text-font"?: undefined;
1729
+ "text-offset"?: undefined;
1730
+ "text-transform"?: undefined;
1731
+ "text-size"?: undefined;
1732
+ "text-max-angle"?: undefined;
1733
+ "icon-image"?: undefined;
1734
+ "icon-padding"?: undefined;
1735
+ "icon-rotate"?: undefined;
1736
+ "icon-rotation-alignment"?: undefined;
1737
+ "icon-size"?: undefined;
1738
+ "text-anchor"?: undefined;
1739
+ "text-line-height"?: undefined;
1740
+ "text-justify"?: undefined;
1741
+ "text-rotate"?: undefined;
1742
+ "symbol-sort-key"?: undefined;
1743
+ "text-padding"?: undefined;
1744
+ "text-rotation-alignment"?: undefined;
1745
+ "text-letter-spacing"?: undefined;
1746
+ "icon-ignore-placement"?: undefined;
1747
+ "icon-allow-overlap"?: undefined;
1748
+ "icon-offset"?: undefined;
1749
+ };
1750
+ paint: {
1751
+ "line-color": string;
1752
+ "line-width": (string | number | string[])[];
1753
+ "background-color"?: undefined;
1754
+ "fill-color"?: undefined;
1755
+ "fill-outline-color"?: undefined;
1756
+ "fill-opacity"?: undefined;
1757
+ "line-dasharray"?: undefined;
1758
+ "line-opacity"?: undefined;
1759
+ "line-offset"?: undefined;
1760
+ "text-color"?: undefined;
1761
+ "line-blur"?: undefined;
1762
+ "icon-opacity"?: undefined;
1763
+ "icon-color"?: undefined;
1764
+ "text-opacity"?: undefined;
1765
+ "text-halo-width"?: undefined;
1766
+ "text-halo-color"?: undefined;
1767
+ "circle-color"?: undefined;
1768
+ "circle-radius"?: undefined;
1769
+ "circle-stroke-color"?: undefined;
1770
+ "circle-stroke-width"?: undefined;
1771
+ };
1772
+ filter?: undefined;
1773
+ maxzoom?: undefined;
1774
+ } | {
1775
+ id: string;
1776
+ type: string;
1777
+ metadata: {
1778
+ group: string;
1779
+ "sub-group": string;
1780
+ type: string;
1781
+ "legend-name": string;
1782
+ desc: string;
1783
+ "insert-before": string;
1784
+ source?: undefined;
1785
+ };
1786
+ source: string;
1787
+ "source-layer": string;
1788
+ minzoom: number;
1789
+ layout: {
1790
+ visibility: string;
1791
+ "symbol-placement": string;
1792
+ "text-max-angle": number;
1793
+ "symbol-spacing": (string | number | string[])[];
1794
+ "text-field": (string | string[])[];
1795
+ "text-font": string[];
1796
+ "text-offset": number[];
1797
+ "text-size": (string | number | string[])[];
1798
+ "fill-sort-key"?: undefined;
1799
+ "line-cap"?: undefined;
1800
+ "line-join"?: undefined;
1801
+ "line-sort-key"?: undefined;
1802
+ "text-transform"?: undefined;
1803
+ "icon-image"?: undefined;
1804
+ "icon-padding"?: undefined;
1805
+ "icon-rotate"?: undefined;
1806
+ "icon-rotation-alignment"?: undefined;
1807
+ "icon-size"?: undefined;
1808
+ "text-anchor"?: undefined;
1809
+ "text-line-height"?: undefined;
1810
+ "text-justify"?: undefined;
1811
+ "text-rotate"?: undefined;
1812
+ "symbol-sort-key"?: undefined;
1813
+ "text-padding"?: undefined;
1814
+ "text-rotation-alignment"?: undefined;
1815
+ "text-letter-spacing"?: undefined;
1816
+ "icon-ignore-placement"?: undefined;
1817
+ "icon-allow-overlap"?: undefined;
1818
+ "icon-offset"?: undefined;
1819
+ };
1820
+ paint: {
1821
+ "text-color": string;
1822
+ "background-color"?: undefined;
1823
+ "fill-color"?: undefined;
1824
+ "fill-outline-color"?: undefined;
1825
+ "fill-opacity"?: undefined;
1826
+ "line-dasharray"?: undefined;
1827
+ "line-color"?: undefined;
1828
+ "line-width"?: undefined;
1829
+ "line-opacity"?: undefined;
1830
+ "line-offset"?: undefined;
1831
+ "line-blur"?: undefined;
1832
+ "icon-opacity"?: undefined;
1833
+ "icon-color"?: undefined;
1834
+ "text-opacity"?: undefined;
1835
+ "text-halo-width"?: undefined;
1836
+ "text-halo-color"?: undefined;
1837
+ "circle-color"?: undefined;
1838
+ "circle-radius"?: undefined;
1839
+ "circle-stroke-color"?: undefined;
1840
+ "circle-stroke-width"?: undefined;
1841
+ };
1842
+ filter?: undefined;
1843
+ maxzoom?: undefined;
1844
+ } | {
1845
+ id: string;
1846
+ type: string;
1847
+ metadata: {
1848
+ group: string;
1849
+ "sub-group": string;
1850
+ type: string;
1851
+ "legend-name": string;
1852
+ desc: string;
1853
+ "insert-before": string;
1854
+ source?: undefined;
1855
+ };
1856
+ source: string;
1857
+ "source-layer": string;
1858
+ layout: {
1859
+ visibility: string;
1860
+ "line-cap": string;
1861
+ "line-join": string;
1862
+ "fill-sort-key"?: undefined;
1863
+ "line-sort-key"?: undefined;
1864
+ "symbol-placement"?: undefined;
1865
+ "symbol-spacing"?: undefined;
1866
+ "text-field"?: undefined;
1867
+ "text-font"?: undefined;
1868
+ "text-offset"?: undefined;
1869
+ "text-transform"?: undefined;
1870
+ "text-size"?: undefined;
1871
+ "text-max-angle"?: undefined;
1872
+ "icon-image"?: undefined;
1873
+ "icon-padding"?: undefined;
1874
+ "icon-rotate"?: undefined;
1875
+ "icon-rotation-alignment"?: undefined;
1876
+ "icon-size"?: undefined;
1877
+ "text-anchor"?: undefined;
1878
+ "text-line-height"?: undefined;
1879
+ "text-justify"?: undefined;
1880
+ "text-rotate"?: undefined;
1881
+ "symbol-sort-key"?: undefined;
1882
+ "text-padding"?: undefined;
1883
+ "text-rotation-alignment"?: undefined;
1884
+ "text-letter-spacing"?: undefined;
1885
+ "icon-ignore-placement"?: undefined;
1886
+ "icon-allow-overlap"?: undefined;
1887
+ "icon-offset"?: undefined;
1888
+ };
1889
+ paint: {
1890
+ "line-color": string;
1891
+ "line-blur": number;
1892
+ "line-opacity": number;
1893
+ "line-width": (string | number | string[])[];
1894
+ "background-color"?: undefined;
1895
+ "fill-color"?: undefined;
1896
+ "fill-outline-color"?: undefined;
1897
+ "fill-opacity"?: undefined;
1898
+ "line-dasharray"?: undefined;
1899
+ "line-offset"?: undefined;
1900
+ "text-color"?: undefined;
1901
+ "icon-opacity"?: undefined;
1902
+ "icon-color"?: undefined;
1903
+ "text-opacity"?: undefined;
1904
+ "text-halo-width"?: undefined;
1905
+ "text-halo-color"?: undefined;
1906
+ "circle-color"?: undefined;
1907
+ "circle-radius"?: undefined;
1908
+ "circle-stroke-color"?: undefined;
1909
+ "circle-stroke-width"?: undefined;
1910
+ };
1911
+ filter?: undefined;
1912
+ maxzoom?: undefined;
1913
+ minzoom?: undefined;
1914
+ } | {
1915
+ id: string;
1916
+ type: string;
1917
+ metadata: {
1918
+ group: string;
1919
+ "sub-group": string;
1920
+ type: string;
1921
+ "legend-name": string;
1922
+ desc: string;
1923
+ "insert-before": string;
1924
+ source?: undefined;
1925
+ };
1926
+ source: string;
1927
+ "source-layer": string;
1928
+ minzoom: number;
1929
+ layout: {
1930
+ visibility: string;
1931
+ "line-cap": string;
1932
+ "line-join": string;
1933
+ "fill-sort-key"?: undefined;
1934
+ "line-sort-key"?: undefined;
1935
+ "symbol-placement"?: undefined;
1936
+ "symbol-spacing"?: undefined;
1937
+ "text-field"?: undefined;
1938
+ "text-font"?: undefined;
1939
+ "text-offset"?: undefined;
1940
+ "text-transform"?: undefined;
1941
+ "text-size"?: undefined;
1942
+ "text-max-angle"?: undefined;
1943
+ "icon-image"?: undefined;
1944
+ "icon-padding"?: undefined;
1945
+ "icon-rotate"?: undefined;
1946
+ "icon-rotation-alignment"?: undefined;
1947
+ "icon-size"?: undefined;
1948
+ "text-anchor"?: undefined;
1949
+ "text-line-height"?: undefined;
1950
+ "text-justify"?: undefined;
1951
+ "text-rotate"?: undefined;
1952
+ "symbol-sort-key"?: undefined;
1953
+ "text-padding"?: undefined;
1954
+ "text-rotation-alignment"?: undefined;
1955
+ "text-letter-spacing"?: undefined;
1956
+ "icon-ignore-placement"?: undefined;
1957
+ "icon-allow-overlap"?: undefined;
1958
+ "icon-offset"?: undefined;
1959
+ };
1960
+ paint: {
1961
+ "line-color": string;
1962
+ "line-blur": number;
1963
+ "line-opacity": number;
1964
+ "line-dasharray": number[];
1965
+ "line-width": (string | number | string[])[];
1966
+ "background-color"?: undefined;
1967
+ "fill-color"?: undefined;
1968
+ "fill-outline-color"?: undefined;
1969
+ "fill-opacity"?: undefined;
1970
+ "line-offset"?: undefined;
1971
+ "text-color"?: undefined;
1972
+ "icon-opacity"?: undefined;
1973
+ "icon-color"?: undefined;
1974
+ "text-opacity"?: undefined;
1975
+ "text-halo-width"?: undefined;
1976
+ "text-halo-color"?: undefined;
1977
+ "circle-color"?: undefined;
1978
+ "circle-radius"?: undefined;
1979
+ "circle-stroke-color"?: undefined;
1980
+ "circle-stroke-width"?: undefined;
1981
+ };
1982
+ filter?: undefined;
1983
+ maxzoom?: undefined;
1984
+ } | {
1985
+ id: string;
1986
+ type: string;
1987
+ source: string;
1988
+ "source-layer": string;
1989
+ metadata: {
1990
+ group: string;
1991
+ "sub-group": string;
1992
+ type: string;
1993
+ "legend-name": string;
1994
+ desc: string;
1995
+ "insert-before": string;
1996
+ source?: undefined;
1997
+ };
1998
+ minzoom: number;
1999
+ filter: (string | (string | string[])[])[];
2000
+ layout: {
2001
+ visibility: string;
2002
+ "icon-image": string;
2003
+ "icon-padding": number;
2004
+ "icon-rotate": (string | number | string[])[];
2005
+ "icon-rotation-alignment": string;
2006
+ "icon-size": (string | number | (string | number | string[])[])[];
2007
+ "symbol-placement": string;
2008
+ "symbol-spacing": number;
2009
+ "fill-sort-key"?: undefined;
2010
+ "line-cap"?: undefined;
2011
+ "line-join"?: undefined;
2012
+ "line-sort-key"?: undefined;
2013
+ "text-field"?: undefined;
2014
+ "text-font"?: undefined;
2015
+ "text-offset"?: undefined;
2016
+ "text-transform"?: undefined;
2017
+ "text-size"?: undefined;
2018
+ "text-max-angle"?: undefined;
2019
+ "text-anchor"?: undefined;
2020
+ "text-line-height"?: undefined;
2021
+ "text-justify"?: undefined;
2022
+ "text-rotate"?: undefined;
2023
+ "symbol-sort-key"?: undefined;
2024
+ "text-padding"?: undefined;
2025
+ "text-rotation-alignment"?: undefined;
2026
+ "text-letter-spacing"?: undefined;
2027
+ "icon-ignore-placement"?: undefined;
2028
+ "icon-allow-overlap"?: undefined;
2029
+ "icon-offset"?: undefined;
2030
+ };
2031
+ paint: {
2032
+ "icon-opacity": number;
2033
+ "icon-color": (string | string[])[];
2034
+ "background-color"?: undefined;
2035
+ "fill-color"?: undefined;
2036
+ "fill-outline-color"?: undefined;
2037
+ "fill-opacity"?: undefined;
2038
+ "line-dasharray"?: undefined;
2039
+ "line-color"?: undefined;
2040
+ "line-width"?: undefined;
2041
+ "line-opacity"?: undefined;
2042
+ "line-offset"?: undefined;
2043
+ "text-color"?: undefined;
2044
+ "line-blur"?: undefined;
2045
+ "text-opacity"?: undefined;
2046
+ "text-halo-width"?: undefined;
2047
+ "text-halo-color"?: undefined;
2048
+ "circle-color"?: undefined;
2049
+ "circle-radius"?: undefined;
2050
+ "circle-stroke-color"?: undefined;
2051
+ "circle-stroke-width"?: undefined;
2052
+ };
2053
+ maxzoom?: undefined;
2054
+ } | {
2055
+ id: string;
2056
+ type: string;
2057
+ source: string;
2058
+ "source-layer": string;
2059
+ metadata: {
2060
+ group: string;
2061
+ "sub-group": string;
2062
+ type: string;
2063
+ "legend-name": string;
2064
+ desc: string;
2065
+ "insert-before": string;
2066
+ source?: undefined;
2067
+ };
2068
+ layout: {
2069
+ visibility: string;
2070
+ "symbol-placement": string;
2071
+ "text-anchor": string;
2072
+ "text-line-height": number;
2073
+ "text-field": string;
2074
+ "text-font": string[];
2075
+ "text-size": number;
2076
+ "text-justify": string;
2077
+ "text-rotate": (string | number | string[])[];
2078
+ "fill-sort-key"?: undefined;
2079
+ "line-cap"?: undefined;
2080
+ "line-join"?: undefined;
2081
+ "line-sort-key"?: undefined;
2082
+ "symbol-spacing"?: undefined;
2083
+ "text-offset"?: undefined;
2084
+ "text-transform"?: undefined;
2085
+ "text-max-angle"?: undefined;
2086
+ "icon-image"?: undefined;
2087
+ "icon-padding"?: undefined;
2088
+ "icon-rotate"?: undefined;
2089
+ "icon-rotation-alignment"?: undefined;
2090
+ "icon-size"?: undefined;
2091
+ "symbol-sort-key"?: undefined;
2092
+ "text-padding"?: undefined;
2093
+ "text-rotation-alignment"?: undefined;
2094
+ "text-letter-spacing"?: undefined;
2095
+ "icon-ignore-placement"?: undefined;
2096
+ "icon-allow-overlap"?: undefined;
2097
+ "icon-offset"?: undefined;
2098
+ };
2099
+ paint: {
2100
+ "text-opacity": number;
2101
+ "text-halo-width": number;
2102
+ "text-halo-color": string;
2103
+ "text-color": string;
2104
+ "background-color"?: undefined;
2105
+ "fill-color"?: undefined;
2106
+ "fill-outline-color"?: undefined;
2107
+ "fill-opacity"?: undefined;
2108
+ "line-dasharray"?: undefined;
2109
+ "line-color"?: undefined;
2110
+ "line-width"?: undefined;
2111
+ "line-opacity"?: undefined;
2112
+ "line-offset"?: undefined;
2113
+ "line-blur"?: undefined;
2114
+ "icon-opacity"?: undefined;
2115
+ "icon-color"?: undefined;
2116
+ "circle-color"?: undefined;
2117
+ "circle-radius"?: undefined;
2118
+ "circle-stroke-color"?: undefined;
2119
+ "circle-stroke-width"?: undefined;
2120
+ };
2121
+ filter?: undefined;
2122
+ maxzoom?: undefined;
2123
+ minzoom?: undefined;
2124
+ } | {
2125
+ id: string;
2126
+ type: string;
2127
+ source: string;
2128
+ "source-layer": string;
2129
+ metadata: {
2130
+ group: string;
2131
+ "sub-group": string;
2132
+ type: string;
2133
+ "legend-name": string;
2134
+ desc: string;
2135
+ "insert-before": string;
2136
+ source?: undefined;
2137
+ };
2138
+ minzoom: number;
2139
+ filter: (string | (string | string[])[])[];
2140
+ layout: {
2141
+ "symbol-sort-key": (string | number | (string | string[])[])[];
2142
+ "symbol-placement": string;
2143
+ "text-field": string;
2144
+ "text-max-angle": number;
2145
+ "text-padding": number;
2146
+ "text-font": (string | (string | string[])[])[];
2147
+ "text-size": (string | number | string[])[];
2148
+ "text-rotation-alignment": string;
2149
+ visibility?: undefined;
2150
+ "fill-sort-key"?: undefined;
2151
+ "line-cap"?: undefined;
2152
+ "line-join"?: undefined;
2153
+ "line-sort-key"?: undefined;
2154
+ "symbol-spacing"?: undefined;
2155
+ "text-offset"?: undefined;
2156
+ "text-transform"?: undefined;
2157
+ "icon-image"?: undefined;
2158
+ "icon-padding"?: undefined;
2159
+ "icon-rotate"?: undefined;
2160
+ "icon-rotation-alignment"?: undefined;
2161
+ "icon-size"?: undefined;
2162
+ "text-anchor"?: undefined;
2163
+ "text-line-height"?: undefined;
2164
+ "text-justify"?: undefined;
2165
+ "text-rotate"?: undefined;
2166
+ "text-letter-spacing"?: undefined;
2167
+ "icon-ignore-placement"?: undefined;
2168
+ "icon-allow-overlap"?: undefined;
2169
+ "icon-offset"?: undefined;
2170
+ };
2171
+ paint: {
2172
+ "text-color": string;
2173
+ "text-halo-color": string;
2174
+ "text-halo-width": number;
2175
+ "background-color"?: undefined;
2176
+ "fill-color"?: undefined;
2177
+ "fill-outline-color"?: undefined;
2178
+ "fill-opacity"?: undefined;
2179
+ "line-dasharray"?: undefined;
2180
+ "line-color"?: undefined;
2181
+ "line-width"?: undefined;
2182
+ "line-opacity"?: undefined;
2183
+ "line-offset"?: undefined;
2184
+ "line-blur"?: undefined;
2185
+ "icon-opacity"?: undefined;
2186
+ "icon-color"?: undefined;
2187
+ "text-opacity"?: undefined;
2188
+ "circle-color"?: undefined;
2189
+ "circle-radius"?: undefined;
2190
+ "circle-stroke-color"?: undefined;
2191
+ "circle-stroke-width"?: undefined;
2192
+ };
2193
+ maxzoom?: undefined;
2194
+ } | {
2195
+ id: string;
2196
+ type: string;
2197
+ source: string;
2198
+ "source-layer": string;
2199
+ metadata: {
2200
+ group: string;
2201
+ "sub-group": string;
2202
+ type: string;
2203
+ "legend-name": string;
2204
+ desc: string;
2205
+ "insert-before": string;
2206
+ source?: undefined;
2207
+ };
2208
+ minzoom: number;
2209
+ maxzoom: number;
2210
+ filter: (string | string[])[];
2211
+ layout: {
2212
+ "symbol-placement": string;
2213
+ "text-field": string;
2214
+ "text-letter-spacing": number;
2215
+ "text-font": string[];
2216
+ "text-size": (string | number | (string | number | string[])[])[];
2217
+ "text-rotation-alignment": string;
2218
+ visibility?: undefined;
2219
+ "fill-sort-key"?: undefined;
2220
+ "line-cap"?: undefined;
2221
+ "line-join"?: undefined;
2222
+ "line-sort-key"?: undefined;
2223
+ "symbol-spacing"?: undefined;
2224
+ "text-offset"?: undefined;
2225
+ "text-transform"?: undefined;
2226
+ "text-max-angle"?: undefined;
2227
+ "icon-image"?: undefined;
2228
+ "icon-padding"?: undefined;
2229
+ "icon-rotate"?: undefined;
2230
+ "icon-rotation-alignment"?: undefined;
2231
+ "icon-size"?: undefined;
2232
+ "text-anchor"?: undefined;
2233
+ "text-line-height"?: undefined;
2234
+ "text-justify"?: undefined;
2235
+ "text-rotate"?: undefined;
2236
+ "symbol-sort-key"?: undefined;
2237
+ "text-padding"?: undefined;
2238
+ "icon-ignore-placement"?: undefined;
2239
+ "icon-allow-overlap"?: undefined;
2240
+ "icon-offset"?: undefined;
2241
+ };
2242
+ paint: {
2243
+ "text-color": string;
2244
+ "text-halo-color": string;
2245
+ "text-halo-width": number;
2246
+ "background-color"?: undefined;
2247
+ "fill-color"?: undefined;
2248
+ "fill-outline-color"?: undefined;
2249
+ "fill-opacity"?: undefined;
2250
+ "line-dasharray"?: undefined;
2251
+ "line-color"?: undefined;
2252
+ "line-width"?: undefined;
2253
+ "line-opacity"?: undefined;
2254
+ "line-offset"?: undefined;
2255
+ "line-blur"?: undefined;
2256
+ "icon-opacity"?: undefined;
2257
+ "icon-color"?: undefined;
2258
+ "text-opacity"?: undefined;
2259
+ "circle-color"?: undefined;
2260
+ "circle-radius"?: undefined;
2261
+ "circle-stroke-color"?: undefined;
2262
+ "circle-stroke-width"?: undefined;
2263
+ };
2264
+ } | {
2265
+ id: string;
2266
+ type: string;
2267
+ source: string;
2268
+ "source-layer": string;
2269
+ metadata: {
2270
+ group: string;
2271
+ "sub-group": string;
2272
+ type: string;
2273
+ "legend-name": string;
2274
+ desc: string;
2275
+ "insert-before": string;
2276
+ source?: undefined;
2277
+ };
2278
+ maxzoom: number;
2279
+ filter: (string | string[])[];
2280
+ layout: {
2281
+ "symbol-placement": string;
2282
+ "text-field": string;
2283
+ "text-font": (string | (string | number | string[])[])[];
2284
+ "text-size": (string | number | (string | number | string[])[])[];
2285
+ "text-rotation-alignment": string;
2286
+ visibility?: undefined;
2287
+ "fill-sort-key"?: undefined;
2288
+ "line-cap"?: undefined;
2289
+ "line-join"?: undefined;
2290
+ "line-sort-key"?: undefined;
2291
+ "symbol-spacing"?: undefined;
2292
+ "text-offset"?: undefined;
2293
+ "text-transform"?: undefined;
2294
+ "text-max-angle"?: undefined;
2295
+ "icon-image"?: undefined;
2296
+ "icon-padding"?: undefined;
2297
+ "icon-rotate"?: undefined;
2298
+ "icon-rotation-alignment"?: undefined;
2299
+ "icon-size"?: undefined;
2300
+ "text-anchor"?: undefined;
2301
+ "text-line-height"?: undefined;
2302
+ "text-justify"?: undefined;
2303
+ "text-rotate"?: undefined;
2304
+ "symbol-sort-key"?: undefined;
2305
+ "text-padding"?: undefined;
2306
+ "text-letter-spacing"?: undefined;
2307
+ "icon-ignore-placement"?: undefined;
2308
+ "icon-allow-overlap"?: undefined;
2309
+ "icon-offset"?: undefined;
2310
+ };
2311
+ paint: {
2312
+ "text-color": string;
2313
+ "text-halo-color": string;
2314
+ "text-halo-width": number;
2315
+ "background-color"?: undefined;
2316
+ "fill-color"?: undefined;
2317
+ "fill-outline-color"?: undefined;
2318
+ "fill-opacity"?: undefined;
2319
+ "line-dasharray"?: undefined;
2320
+ "line-color"?: undefined;
2321
+ "line-width"?: undefined;
2322
+ "line-opacity"?: undefined;
2323
+ "line-offset"?: undefined;
2324
+ "line-blur"?: undefined;
2325
+ "icon-opacity"?: undefined;
2326
+ "icon-color"?: undefined;
2327
+ "text-opacity"?: undefined;
2328
+ "circle-color"?: undefined;
2329
+ "circle-radius"?: undefined;
2330
+ "circle-stroke-color"?: undefined;
2331
+ "circle-stroke-width"?: undefined;
2332
+ };
2333
+ minzoom?: undefined;
2334
+ } | {
2335
+ id: string;
2336
+ type: string;
2337
+ source: string;
2338
+ "source-layer": string;
2339
+ metadata: {
2340
+ group: string;
2341
+ "sub-group": string;
2342
+ type: string;
2343
+ "legend-name": string;
2344
+ desc: string;
2345
+ "insert-before": string;
2346
+ source?: undefined;
2347
+ };
2348
+ minzoom: number;
2349
+ filter: (string | (string | number | (string | (string | number | (string | number | string[])[])[])[])[])[];
2350
+ layout: {
2351
+ visibility: string;
2352
+ "fill-sort-key"?: undefined;
2353
+ "line-cap"?: undefined;
2354
+ "line-join"?: undefined;
2355
+ "line-sort-key"?: undefined;
2356
+ "symbol-placement"?: undefined;
2357
+ "symbol-spacing"?: undefined;
2358
+ "text-field"?: undefined;
2359
+ "text-font"?: undefined;
2360
+ "text-offset"?: undefined;
2361
+ "text-transform"?: undefined;
2362
+ "text-size"?: undefined;
2363
+ "text-max-angle"?: undefined;
2364
+ "icon-image"?: undefined;
2365
+ "icon-padding"?: undefined;
2366
+ "icon-rotate"?: undefined;
2367
+ "icon-rotation-alignment"?: undefined;
2368
+ "icon-size"?: undefined;
2369
+ "text-anchor"?: undefined;
2370
+ "text-line-height"?: undefined;
2371
+ "text-justify"?: undefined;
2372
+ "text-rotate"?: undefined;
2373
+ "symbol-sort-key"?: undefined;
2374
+ "text-padding"?: undefined;
2375
+ "text-rotation-alignment"?: undefined;
2376
+ "text-letter-spacing"?: undefined;
2377
+ "icon-ignore-placement"?: undefined;
2378
+ "icon-allow-overlap"?: undefined;
2379
+ "icon-offset"?: undefined;
2380
+ };
2381
+ paint: {
2382
+ "circle-color": string;
2383
+ "circle-radius": (string | number | string[])[];
2384
+ "circle-stroke-color": string;
2385
+ "circle-stroke-width": number;
2386
+ "background-color"?: undefined;
2387
+ "fill-color"?: undefined;
2388
+ "fill-outline-color"?: undefined;
2389
+ "fill-opacity"?: undefined;
2390
+ "line-dasharray"?: undefined;
2391
+ "line-color"?: undefined;
2392
+ "line-width"?: undefined;
2393
+ "line-opacity"?: undefined;
2394
+ "line-offset"?: undefined;
2395
+ "text-color"?: undefined;
2396
+ "line-blur"?: undefined;
2397
+ "icon-opacity"?: undefined;
2398
+ "icon-color"?: undefined;
2399
+ "text-opacity"?: undefined;
2400
+ "text-halo-width"?: undefined;
2401
+ "text-halo-color"?: undefined;
2402
+ };
2403
+ maxzoom?: undefined;
2404
+ } | {
2405
+ id: string;
2406
+ type: string;
2407
+ source: string;
2408
+ "source-layer": string;
2409
+ metadata: {
2410
+ group: string;
2411
+ "sub-group": string;
2412
+ type: string;
2413
+ "legend-name": string;
2414
+ desc: string;
2415
+ "insert-before": string;
2416
+ source?: undefined;
2417
+ };
2418
+ minzoom: number;
2419
+ filter: (string | (string | number | (string | (string | number | (string | number | string[])[])[])[])[])[];
2420
+ layout: {
2421
+ visibility: string;
2422
+ "text-rotation-alignment": string;
2423
+ "symbol-placement": string;
2424
+ "text-field": (string | (string | (string | number | string[])[] | {
2425
+ "min-fraction-digits": number;
2426
+ "max-fraction-digits": number;
2427
+ })[] | {
2428
+ "font-scale": number;
2429
+ })[];
2430
+ "text-font": string[];
2431
+ "text-size": (string | number | string[])[];
2432
+ "text-anchor": string;
2433
+ "text-offset": number[];
2434
+ "fill-sort-key"?: undefined;
2435
+ "line-cap"?: undefined;
2436
+ "line-join"?: undefined;
2437
+ "line-sort-key"?: undefined;
2438
+ "symbol-spacing"?: undefined;
2439
+ "text-transform"?: undefined;
2440
+ "text-max-angle"?: undefined;
2441
+ "icon-image"?: undefined;
2442
+ "icon-padding"?: undefined;
2443
+ "icon-rotate"?: undefined;
2444
+ "icon-rotation-alignment"?: undefined;
2445
+ "icon-size"?: undefined;
2446
+ "text-line-height"?: undefined;
2447
+ "text-justify"?: undefined;
2448
+ "text-rotate"?: undefined;
2449
+ "symbol-sort-key"?: undefined;
2450
+ "text-padding"?: undefined;
2451
+ "text-letter-spacing"?: undefined;
2452
+ "icon-ignore-placement"?: undefined;
2453
+ "icon-allow-overlap"?: undefined;
2454
+ "icon-offset"?: undefined;
2455
+ };
2456
+ paint: {
2457
+ "text-color": string;
2458
+ "text-halo-color": string;
2459
+ "text-halo-width": number;
2460
+ "background-color"?: undefined;
2461
+ "fill-color"?: undefined;
2462
+ "fill-outline-color"?: undefined;
2463
+ "fill-opacity"?: undefined;
2464
+ "line-dasharray"?: undefined;
2465
+ "line-color"?: undefined;
2466
+ "line-width"?: undefined;
2467
+ "line-opacity"?: undefined;
2468
+ "line-offset"?: undefined;
2469
+ "line-blur"?: undefined;
2470
+ "icon-opacity"?: undefined;
2471
+ "icon-color"?: undefined;
2472
+ "text-opacity"?: undefined;
2473
+ "circle-color"?: undefined;
2474
+ "circle-radius"?: undefined;
2475
+ "circle-stroke-color"?: undefined;
2476
+ "circle-stroke-width"?: undefined;
2477
+ };
2478
+ maxzoom?: undefined;
2479
+ } | {
2480
+ id: string;
2481
+ type: string;
2482
+ source: string;
2483
+ "source-layer": string;
2484
+ metadata: {
2485
+ group: string;
2486
+ "sub-group": string;
2487
+ type: string;
2488
+ "legend-name": string;
2489
+ desc: string;
2490
+ "insert-before": string;
2491
+ source?: undefined;
2492
+ };
2493
+ minzoom: number;
2494
+ filter: (string | (string | (string | string[])[])[])[];
2495
+ layout: {
2496
+ "symbol-sort-key": (string | number | (string | string[])[])[];
2497
+ "symbol-placement": string;
2498
+ "symbol-spacing": (string | number | string[])[];
2499
+ "text-field": string;
2500
+ "text-max-angle": (string | number | string[])[];
2501
+ "text-padding": number;
2502
+ "text-font": string[];
2503
+ "text-size": (string | number | string[])[];
2504
+ "text-rotation-alignment": string;
2505
+ visibility?: undefined;
2506
+ "fill-sort-key"?: undefined;
2507
+ "line-cap"?: undefined;
2508
+ "line-join"?: undefined;
2509
+ "line-sort-key"?: undefined;
2510
+ "text-offset"?: undefined;
2511
+ "text-transform"?: undefined;
2512
+ "icon-image"?: undefined;
2513
+ "icon-padding"?: undefined;
2514
+ "icon-rotate"?: undefined;
2515
+ "icon-rotation-alignment"?: undefined;
2516
+ "icon-size"?: undefined;
2517
+ "text-anchor"?: undefined;
2518
+ "text-line-height"?: undefined;
2519
+ "text-justify"?: undefined;
2520
+ "text-rotate"?: undefined;
2521
+ "text-letter-spacing"?: undefined;
2522
+ "icon-ignore-placement"?: undefined;
2523
+ "icon-allow-overlap"?: undefined;
2524
+ "icon-offset"?: undefined;
2525
+ };
2526
+ paint: {
2527
+ "text-color": string;
2528
+ "text-halo-color": string;
2529
+ "text-halo-width": number;
2530
+ "background-color"?: undefined;
2531
+ "fill-color"?: undefined;
2532
+ "fill-outline-color"?: undefined;
2533
+ "fill-opacity"?: undefined;
2534
+ "line-dasharray"?: undefined;
2535
+ "line-color"?: undefined;
2536
+ "line-width"?: undefined;
2537
+ "line-opacity"?: undefined;
2538
+ "line-offset"?: undefined;
2539
+ "line-blur"?: undefined;
2540
+ "icon-opacity"?: undefined;
2541
+ "icon-color"?: undefined;
2542
+ "text-opacity"?: undefined;
2543
+ "circle-color"?: undefined;
2544
+ "circle-radius"?: undefined;
2545
+ "circle-stroke-color"?: undefined;
2546
+ "circle-stroke-width"?: undefined;
2547
+ };
2548
+ maxzoom?: undefined;
2549
+ } | {
2550
+ id: string;
2551
+ type: string;
2552
+ source: string;
2553
+ "source-layer": string;
2554
+ metadata: {
2555
+ group: string;
2556
+ "sub-group": string;
2557
+ type: string;
2558
+ "legend-name": string;
2559
+ desc: string;
2560
+ "insert-before": string;
2561
+ source?: undefined;
2562
+ };
2563
+ filter: (string | number | (string | (string | number | (string | number | string[])[])[])[])[];
2564
+ layout: {
2565
+ visibility: string;
2566
+ "icon-padding": number;
2567
+ "text-rotation-alignment": string;
2568
+ "symbol-placement": string;
2569
+ "icon-image": (string | (string | string[])[])[];
2570
+ "icon-size": (string | number | (string | number | (string | string[])[])[])[];
2571
+ "icon-ignore-placement": boolean;
2572
+ "icon-allow-overlap": boolean;
2573
+ "text-field": (string | (string | {
2574
+ "font-scale": number;
2575
+ "text-color"?: undefined;
2576
+ } | (string | (string | number | string[])[] | {
2577
+ "min-fraction-digits": number;
2578
+ "max-fraction-digits": number;
2579
+ })[] | {
2580
+ "text-color": string;
2581
+ "font-scale"?: undefined;
2582
+ })[])[];
2583
+ "text-font": string[];
2584
+ "text-offset": number[];
2585
+ "icon-offset": number[];
2586
+ "text-size": (string | number | (string | number | (string | string[])[])[])[];
2587
+ "fill-sort-key"?: undefined;
2588
+ "line-cap"?: undefined;
2589
+ "line-join"?: undefined;
2590
+ "line-sort-key"?: undefined;
2591
+ "symbol-spacing"?: undefined;
2592
+ "text-transform"?: undefined;
2593
+ "text-max-angle"?: undefined;
2594
+ "icon-rotate"?: undefined;
2595
+ "icon-rotation-alignment"?: undefined;
2596
+ "text-anchor"?: undefined;
2597
+ "text-line-height"?: undefined;
2598
+ "text-justify"?: undefined;
2599
+ "text-rotate"?: undefined;
2600
+ "symbol-sort-key"?: undefined;
2601
+ "text-padding"?: undefined;
2602
+ "text-letter-spacing"?: undefined;
2603
+ };
2604
+ paint: {
2605
+ "text-color": (string | (string | string[])[])[];
2606
+ "background-color"?: undefined;
2607
+ "fill-color"?: undefined;
2608
+ "fill-outline-color"?: undefined;
2609
+ "fill-opacity"?: undefined;
2610
+ "line-dasharray"?: undefined;
2611
+ "line-color"?: undefined;
2612
+ "line-width"?: undefined;
2613
+ "line-opacity"?: undefined;
2614
+ "line-offset"?: undefined;
2615
+ "line-blur"?: undefined;
2616
+ "icon-opacity"?: undefined;
2617
+ "icon-color"?: undefined;
2618
+ "text-opacity"?: undefined;
2619
+ "text-halo-width"?: undefined;
2620
+ "text-halo-color"?: undefined;
2621
+ "circle-color"?: undefined;
2622
+ "circle-radius"?: undefined;
2623
+ "circle-stroke-color"?: undefined;
2624
+ "circle-stroke-width"?: undefined;
2625
+ };
2626
+ maxzoom?: undefined;
2627
+ minzoom?: undefined;
2628
+ })[];
2629
+ };
2630
+
2631
+ export { ApiBackgroundLayer, ApiElement, ApiLayer, ApiSource, BOUNDS_AMERSFOORT, BOUNDS_NL, COMMON_BOUNDS, DEFAULT_MAP_CONFIG, MapComponent, MapElement, MapElementRepository, MapLayer, MapSource, MaplibreCursorService, NDWMapStyle, lineWidthFrcSpecification };
326
2632
  export type { ClickEvent, LayerFilterFunction, LayerGroup, LayerMetadata, LayerSubGroup, MapConfig, MapElementConfig, NdwLayerFilterFunction, NdwLayerSpecification };