@mapcomponents/react-maplibre 0.1.73 → 0.1.74

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.
Files changed (41) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/components/MlGeoJsonLayer/MlGeoJsonLayer.d.ts +1 -1
  3. package/dist/components/MlOrderLayers/MlOrderLayers.d.ts +21 -0
  4. package/dist/components/MlOrderLayers/MlOrderLayers.stories.d.ts +15 -0
  5. package/dist/components/MlTemporalController/MlTemporalController.d.ts +175 -0
  6. package/dist/components/MlTemporalController/MlTemporalController.stories.d.ts +32 -0
  7. package/dist/components/MlTemporalController/utils/MlTemporalControllerLabels.d.ts +20 -0
  8. package/dist/components/MlTemporalController/utils/TemporalControllerPlayer.d.ts +21 -0
  9. package/dist/components/MlTemporalController/utils/paintPicker.d.ts +59 -0
  10. package/dist/components/MlTemporalController/utils/useFilterData.d.ts +14 -0
  11. package/dist/components/MlWmsLoader/MlWmsLoader.d.ts +22 -4
  12. package/dist/components/MlWmsLoader/MlWmsLoader.stories.d.ts +5 -0
  13. package/dist/contexts/LayerContext.d.ts +43 -0
  14. package/dist/hooks/useLayer.d.ts +5 -3
  15. package/dist/hooks/useLayerContext.d.ts +2 -0
  16. package/dist/index.d.ts +20 -0
  17. package/dist/index.esm.js +13849 -147
  18. package/dist/index.esm.js.map +1 -1
  19. package/dist/omt_styles/config.d.ts +7 -0
  20. package/dist/omt_styles/gruvbox.d.ts +2420 -0
  21. package/dist/omt_styles/medieval_kingdom.d.ts +2420 -0
  22. package/dist/omt_styles/monokai.d.ts +2420 -0
  23. package/dist/omt_styles/oceanic_next.d.ts +2420 -0
  24. package/dist/omt_styles/solarized.d.ts +2420 -0
  25. package/dist/ui_components/AddLayerButton/AddLayerButton.d.ts +12 -0
  26. package/dist/ui_components/AddLayerButton/AddLayerButton.stories.d.ts +13 -0
  27. package/dist/ui_components/AddLayerButton/AddLayerPopup.d.ts +13 -0
  28. package/dist/ui_components/AddLayerButton/LayerConfigForms/GeoJsonLayerForm.d.ts +8 -0
  29. package/dist/ui_components/AddLayerButton/LayerConfigForms/LayerTypeForm.d.ts +9 -0
  30. package/dist/ui_components/AddLayerButton/LayerConfigForms/WmsLayerForm.d.ts +9 -0
  31. package/dist/ui_components/ConfirmDialog.d.ts +16 -0
  32. package/dist/ui_components/LayerList/LayerList.d.ts +3 -2
  33. package/dist/ui_components/LayerList/LayerList.stories.d.ts +1 -0
  34. package/dist/ui_components/LayerList/LayerListItem.d.ts +3 -1
  35. package/dist/ui_components/LayerList/LayerListItemFactory.d.ts +15 -0
  36. package/dist/ui_components/MapcomponentsTheme.d.ts +6 -1
  37. package/dist/ui_components/SelectStyleButton/SelectStyleButton.d.ts +17 -0
  38. package/dist/ui_components/SelectStyleButton/SelectStyleButton.stories.d.ts +15 -0
  39. package/dist/ui_components/SelectStyleButton/SelectStylePopup.d.ts +13 -0
  40. package/dist/ui_components/Sidebar.d.ts +1 -1
  41. package/package.json +2 -2
@@ -0,0 +1,2420 @@
1
+ declare const _default: {
2
+ version: number;
3
+ name: string;
4
+ center: number[];
5
+ zoom: number;
6
+ bearing: number;
7
+ pitch: number;
8
+ sources: {
9
+ openmaptiles: {
10
+ type: string;
11
+ url: string;
12
+ };
13
+ };
14
+ sprite: string;
15
+ glyphs: string;
16
+ layers: ({
17
+ id: string;
18
+ type: string;
19
+ paint: {
20
+ 'background-color': string;
21
+ 'fill-color'?: undefined;
22
+ 'fill-opacity'?: undefined;
23
+ 'line-color'?: undefined;
24
+ 'line-dasharray'?: undefined;
25
+ 'fill-outline-color'?: undefined;
26
+ 'fill-antialias'?: undefined;
27
+ 'line-width'?: undefined;
28
+ 'fill-translate'?: undefined;
29
+ 'fill-pattern'?: undefined;
30
+ 'line-opacity'?: undefined;
31
+ 'text-color'?: undefined;
32
+ 'text-halo-width'?: undefined;
33
+ 'text-halo-color'?: undefined;
34
+ 'text-halo-blur'?: undefined;
35
+ };
36
+ metadata?: undefined;
37
+ source?: undefined;
38
+ 'source-layer'?: undefined;
39
+ filter?: undefined;
40
+ layout?: undefined;
41
+ maxzoom?: undefined;
42
+ minzoom?: undefined;
43
+ } | {
44
+ id: string;
45
+ type: string;
46
+ metadata: {
47
+ 'mapbox:group': string;
48
+ };
49
+ source: string;
50
+ 'source-layer': string;
51
+ filter: string[];
52
+ layout: {
53
+ visibility: string;
54
+ 'line-cap'?: undefined;
55
+ 'line-join'?: undefined;
56
+ 'text-font'?: undefined;
57
+ 'text-size'?: undefined;
58
+ 'text-field'?: undefined;
59
+ 'text-max-width'?: undefined;
60
+ 'text-rotation-alignment'?: undefined;
61
+ 'symbol-placement'?: undefined;
62
+ 'text-letter-spacing'?: undefined;
63
+ 'symbol-spacing'?: undefined;
64
+ 'text-padding'?: undefined;
65
+ 'text-anchor'?: undefined;
66
+ 'icon-image'?: undefined;
67
+ 'text-offset'?: undefined;
68
+ 'icon-rotation-alignment'?: undefined;
69
+ 'icon-size'?: undefined;
70
+ 'text-transform'?: undefined;
71
+ };
72
+ paint: {
73
+ 'fill-color': string;
74
+ 'fill-opacity': {
75
+ base: number;
76
+ stops: number[][];
77
+ };
78
+ 'background-color'?: undefined;
79
+ 'line-color'?: undefined;
80
+ 'line-dasharray'?: undefined;
81
+ 'fill-outline-color'?: undefined;
82
+ 'fill-antialias'?: undefined;
83
+ 'line-width'?: undefined;
84
+ 'fill-translate'?: undefined;
85
+ 'fill-pattern'?: undefined;
86
+ 'line-opacity'?: undefined;
87
+ 'text-color'?: undefined;
88
+ 'text-halo-width'?: undefined;
89
+ 'text-halo-color'?: undefined;
90
+ 'text-halo-blur'?: undefined;
91
+ };
92
+ maxzoom?: undefined;
93
+ minzoom?: undefined;
94
+ } | {
95
+ id: string;
96
+ type: string;
97
+ metadata: {
98
+ 'mapbox:group': string;
99
+ };
100
+ source: string;
101
+ 'source-layer': string;
102
+ filter: (string | string[])[];
103
+ paint: {
104
+ 'fill-color': string;
105
+ 'background-color'?: undefined;
106
+ 'fill-opacity'?: undefined;
107
+ 'line-color'?: undefined;
108
+ 'line-dasharray'?: undefined;
109
+ 'fill-outline-color'?: undefined;
110
+ 'fill-antialias'?: undefined;
111
+ 'line-width'?: undefined;
112
+ 'fill-translate'?: undefined;
113
+ 'fill-pattern'?: undefined;
114
+ 'line-opacity'?: undefined;
115
+ 'text-color'?: undefined;
116
+ 'text-halo-width'?: undefined;
117
+ 'text-halo-color'?: undefined;
118
+ 'text-halo-blur'?: undefined;
119
+ };
120
+ layout?: undefined;
121
+ maxzoom?: undefined;
122
+ minzoom?: undefined;
123
+ } | {
124
+ id: string;
125
+ type: string;
126
+ metadata: {
127
+ 'mapbox:group': string;
128
+ };
129
+ source: string;
130
+ 'source-layer': string;
131
+ filter: string[];
132
+ paint: {
133
+ 'fill-color': string;
134
+ 'fill-opacity': {
135
+ base: number;
136
+ stops: number[][];
137
+ };
138
+ 'background-color'?: undefined;
139
+ 'line-color'?: undefined;
140
+ 'line-dasharray'?: undefined;
141
+ 'fill-outline-color'?: undefined;
142
+ 'fill-antialias'?: undefined;
143
+ 'line-width'?: undefined;
144
+ 'fill-translate'?: undefined;
145
+ 'fill-pattern'?: undefined;
146
+ 'line-opacity'?: undefined;
147
+ 'text-color'?: undefined;
148
+ 'text-halo-width'?: undefined;
149
+ 'text-halo-color'?: undefined;
150
+ 'text-halo-blur'?: undefined;
151
+ };
152
+ layout?: undefined;
153
+ maxzoom?: undefined;
154
+ minzoom?: undefined;
155
+ } | {
156
+ id: string;
157
+ type: string;
158
+ metadata: {
159
+ 'mapbox:group': string;
160
+ };
161
+ source: string;
162
+ 'source-layer': string;
163
+ filter: string[];
164
+ layout: {
165
+ visibility?: undefined;
166
+ 'line-cap'?: undefined;
167
+ 'line-join'?: undefined;
168
+ 'text-font'?: undefined;
169
+ 'text-size'?: undefined;
170
+ 'text-field'?: undefined;
171
+ 'text-max-width'?: undefined;
172
+ 'text-rotation-alignment'?: undefined;
173
+ 'symbol-placement'?: undefined;
174
+ 'text-letter-spacing'?: undefined;
175
+ 'symbol-spacing'?: undefined;
176
+ 'text-padding'?: undefined;
177
+ 'text-anchor'?: undefined;
178
+ 'icon-image'?: undefined;
179
+ 'text-offset'?: undefined;
180
+ 'icon-rotation-alignment'?: undefined;
181
+ 'icon-size'?: undefined;
182
+ 'text-transform'?: undefined;
183
+ };
184
+ paint: {
185
+ 'line-color': string;
186
+ 'line-dasharray': number[];
187
+ 'background-color'?: undefined;
188
+ 'fill-color'?: undefined;
189
+ 'fill-opacity'?: undefined;
190
+ 'fill-outline-color'?: undefined;
191
+ 'fill-antialias'?: undefined;
192
+ 'line-width'?: undefined;
193
+ 'fill-translate'?: undefined;
194
+ 'fill-pattern'?: undefined;
195
+ 'line-opacity'?: undefined;
196
+ 'text-color'?: undefined;
197
+ 'text-halo-width'?: undefined;
198
+ 'text-halo-color'?: undefined;
199
+ 'text-halo-blur'?: undefined;
200
+ };
201
+ maxzoom?: undefined;
202
+ minzoom?: undefined;
203
+ } | {
204
+ id: string;
205
+ type: string;
206
+ metadata: {
207
+ 'mapbox:group': string;
208
+ };
209
+ source: string;
210
+ 'source-layer': string;
211
+ filter: string[];
212
+ paint: {
213
+ 'fill-color': string;
214
+ 'fill-opacity': number;
215
+ 'fill-outline-color': string;
216
+ 'fill-antialias': {
217
+ base: number;
218
+ stops: (number | boolean)[][];
219
+ };
220
+ 'background-color'?: undefined;
221
+ 'line-color'?: undefined;
222
+ 'line-dasharray'?: undefined;
223
+ 'line-width'?: undefined;
224
+ 'fill-translate'?: undefined;
225
+ 'fill-pattern'?: undefined;
226
+ 'line-opacity'?: undefined;
227
+ 'text-color'?: undefined;
228
+ 'text-halo-width'?: undefined;
229
+ 'text-halo-color'?: undefined;
230
+ 'text-halo-blur'?: undefined;
231
+ };
232
+ layout?: undefined;
233
+ maxzoom?: undefined;
234
+ minzoom?: undefined;
235
+ } | {
236
+ id: string;
237
+ type: string;
238
+ metadata: {
239
+ 'mapbox:group': string;
240
+ };
241
+ source: string;
242
+ 'source-layer': string;
243
+ filter: string[];
244
+ paint: {
245
+ 'fill-color': string;
246
+ 'fill-opacity': number;
247
+ 'background-color'?: undefined;
248
+ 'line-color'?: undefined;
249
+ 'line-dasharray'?: undefined;
250
+ 'fill-outline-color'?: undefined;
251
+ 'fill-antialias'?: undefined;
252
+ 'line-width'?: undefined;
253
+ 'fill-translate'?: undefined;
254
+ 'fill-pattern'?: undefined;
255
+ 'line-opacity'?: undefined;
256
+ 'text-color'?: undefined;
257
+ 'text-halo-width'?: undefined;
258
+ 'text-halo-color'?: undefined;
259
+ 'text-halo-blur'?: undefined;
260
+ };
261
+ layout?: undefined;
262
+ maxzoom?: undefined;
263
+ minzoom?: undefined;
264
+ } | {
265
+ id: string;
266
+ type: string;
267
+ metadata: {
268
+ 'mapbox:group': string;
269
+ };
270
+ source: string;
271
+ 'source-layer': string;
272
+ filter: string[];
273
+ layout: {
274
+ 'line-cap': string;
275
+ visibility?: undefined;
276
+ 'line-join'?: undefined;
277
+ 'text-font'?: undefined;
278
+ 'text-size'?: undefined;
279
+ 'text-field'?: undefined;
280
+ 'text-max-width'?: undefined;
281
+ 'text-rotation-alignment'?: undefined;
282
+ 'symbol-placement'?: undefined;
283
+ 'text-letter-spacing'?: undefined;
284
+ 'symbol-spacing'?: undefined;
285
+ 'text-padding'?: undefined;
286
+ 'text-anchor'?: undefined;
287
+ 'icon-image'?: undefined;
288
+ 'text-offset'?: undefined;
289
+ 'icon-rotation-alignment'?: undefined;
290
+ 'icon-size'?: undefined;
291
+ 'text-transform'?: undefined;
292
+ };
293
+ paint: {
294
+ 'line-color': string;
295
+ 'line-width': {
296
+ base: number;
297
+ stops: number[][];
298
+ };
299
+ 'background-color'?: undefined;
300
+ 'fill-color'?: undefined;
301
+ 'fill-opacity'?: undefined;
302
+ 'line-dasharray'?: undefined;
303
+ 'fill-outline-color'?: undefined;
304
+ 'fill-antialias'?: undefined;
305
+ 'fill-translate'?: undefined;
306
+ 'fill-pattern'?: undefined;
307
+ 'line-opacity'?: undefined;
308
+ 'text-color'?: undefined;
309
+ 'text-halo-width'?: undefined;
310
+ 'text-halo-color'?: undefined;
311
+ 'text-halo-blur'?: undefined;
312
+ };
313
+ maxzoom?: undefined;
314
+ minzoom?: undefined;
315
+ } | {
316
+ id: string;
317
+ type: string;
318
+ metadata: {
319
+ 'mapbox:group': string;
320
+ };
321
+ source: string;
322
+ 'source-layer': string;
323
+ maxzoom: number;
324
+ filter: string[];
325
+ layout: {
326
+ visibility: string;
327
+ 'line-cap'?: undefined;
328
+ 'line-join'?: undefined;
329
+ 'text-font'?: undefined;
330
+ 'text-size'?: undefined;
331
+ 'text-field'?: undefined;
332
+ 'text-max-width'?: undefined;
333
+ 'text-rotation-alignment'?: undefined;
334
+ 'symbol-placement'?: undefined;
335
+ 'text-letter-spacing'?: undefined;
336
+ 'symbol-spacing'?: undefined;
337
+ 'text-padding'?: undefined;
338
+ 'text-anchor'?: undefined;
339
+ 'icon-image'?: undefined;
340
+ 'text-offset'?: undefined;
341
+ 'icon-rotation-alignment'?: undefined;
342
+ 'icon-size'?: undefined;
343
+ 'text-transform'?: undefined;
344
+ };
345
+ paint: {
346
+ 'fill-opacity': number;
347
+ 'fill-color': string;
348
+ 'fill-translate': {
349
+ base: number;
350
+ stops: (number | number[])[][];
351
+ };
352
+ 'background-color'?: undefined;
353
+ 'line-color'?: undefined;
354
+ 'line-dasharray'?: undefined;
355
+ 'fill-outline-color'?: undefined;
356
+ 'fill-antialias'?: undefined;
357
+ 'line-width'?: undefined;
358
+ 'fill-pattern'?: undefined;
359
+ 'line-opacity'?: undefined;
360
+ 'text-color'?: undefined;
361
+ 'text-halo-width'?: undefined;
362
+ 'text-halo-color'?: undefined;
363
+ 'text-halo-blur'?: undefined;
364
+ };
365
+ minzoom?: undefined;
366
+ } | {
367
+ id: string;
368
+ type: string;
369
+ metadata: {
370
+ 'mapbox:group': string;
371
+ };
372
+ source: string;
373
+ 'source-layer': string;
374
+ layout: {
375
+ visibility: string;
376
+ 'line-cap'?: undefined;
377
+ 'line-join'?: undefined;
378
+ 'text-font'?: undefined;
379
+ 'text-size'?: undefined;
380
+ 'text-field'?: undefined;
381
+ 'text-max-width'?: undefined;
382
+ 'text-rotation-alignment'?: undefined;
383
+ 'symbol-placement'?: undefined;
384
+ 'text-letter-spacing'?: undefined;
385
+ 'symbol-spacing'?: undefined;
386
+ 'text-padding'?: undefined;
387
+ 'text-anchor'?: undefined;
388
+ 'icon-image'?: undefined;
389
+ 'text-offset'?: undefined;
390
+ 'icon-rotation-alignment'?: undefined;
391
+ 'icon-size'?: undefined;
392
+ 'text-transform'?: undefined;
393
+ };
394
+ paint: {
395
+ 'fill-color': string;
396
+ 'background-color'?: undefined;
397
+ 'fill-opacity'?: undefined;
398
+ 'line-color'?: undefined;
399
+ 'line-dasharray'?: undefined;
400
+ 'fill-outline-color'?: undefined;
401
+ 'fill-antialias'?: undefined;
402
+ 'line-width'?: undefined;
403
+ 'fill-translate'?: undefined;
404
+ 'fill-pattern'?: undefined;
405
+ 'line-opacity'?: undefined;
406
+ 'text-color'?: undefined;
407
+ 'text-halo-width'?: undefined;
408
+ 'text-halo-color'?: undefined;
409
+ 'text-halo-blur'?: undefined;
410
+ };
411
+ filter?: undefined;
412
+ maxzoom?: undefined;
413
+ minzoom?: undefined;
414
+ } | {
415
+ id: string;
416
+ type: string;
417
+ metadata: {
418
+ 'mapbox:group': string;
419
+ };
420
+ source: string;
421
+ 'source-layer': string;
422
+ layout: {
423
+ visibility: string;
424
+ 'line-cap'?: undefined;
425
+ 'line-join'?: undefined;
426
+ 'text-font'?: undefined;
427
+ 'text-size'?: undefined;
428
+ 'text-field'?: undefined;
429
+ 'text-max-width'?: undefined;
430
+ 'text-rotation-alignment'?: undefined;
431
+ 'symbol-placement'?: undefined;
432
+ 'text-letter-spacing'?: undefined;
433
+ 'symbol-spacing'?: undefined;
434
+ 'text-padding'?: undefined;
435
+ 'text-anchor'?: undefined;
436
+ 'icon-image'?: undefined;
437
+ 'text-offset'?: undefined;
438
+ 'icon-rotation-alignment'?: undefined;
439
+ 'icon-size'?: undefined;
440
+ 'text-transform'?: undefined;
441
+ };
442
+ paint: {
443
+ 'fill-translate': number[];
444
+ 'fill-pattern': string;
445
+ 'background-color'?: undefined;
446
+ 'fill-color'?: undefined;
447
+ 'fill-opacity'?: undefined;
448
+ 'line-color'?: undefined;
449
+ 'line-dasharray'?: undefined;
450
+ 'fill-outline-color'?: undefined;
451
+ 'fill-antialias'?: undefined;
452
+ 'line-width'?: undefined;
453
+ 'line-opacity'?: undefined;
454
+ 'text-color'?: undefined;
455
+ 'text-halo-width'?: undefined;
456
+ 'text-halo-color'?: undefined;
457
+ 'text-halo-blur'?: undefined;
458
+ };
459
+ filter?: undefined;
460
+ maxzoom?: undefined;
461
+ minzoom?: undefined;
462
+ } | {
463
+ id: string;
464
+ type: string;
465
+ metadata: {
466
+ 'mapbox:group': string;
467
+ };
468
+ source: string;
469
+ 'source-layer': string;
470
+ paint: {
471
+ 'fill-color': string;
472
+ 'fill-antialias': boolean;
473
+ 'background-color'?: undefined;
474
+ 'fill-opacity'?: undefined;
475
+ 'line-color'?: undefined;
476
+ 'line-dasharray'?: undefined;
477
+ 'fill-outline-color'?: undefined;
478
+ 'line-width'?: undefined;
479
+ 'fill-translate'?: undefined;
480
+ 'fill-pattern'?: undefined;
481
+ 'line-opacity'?: undefined;
482
+ 'text-color'?: undefined;
483
+ 'text-halo-width'?: undefined;
484
+ 'text-halo-color'?: undefined;
485
+ 'text-halo-blur'?: undefined;
486
+ };
487
+ filter?: undefined;
488
+ layout?: undefined;
489
+ maxzoom?: undefined;
490
+ minzoom?: undefined;
491
+ } | {
492
+ id: string;
493
+ type: string;
494
+ metadata: {
495
+ 'mapbox:group': string;
496
+ };
497
+ source: string;
498
+ 'source-layer': string;
499
+ layout: {
500
+ visibility: string;
501
+ 'line-cap'?: undefined;
502
+ 'line-join'?: undefined;
503
+ 'text-font'?: undefined;
504
+ 'text-size'?: undefined;
505
+ 'text-field'?: undefined;
506
+ 'text-max-width'?: undefined;
507
+ 'text-rotation-alignment'?: undefined;
508
+ 'symbol-placement'?: undefined;
509
+ 'text-letter-spacing'?: undefined;
510
+ 'symbol-spacing'?: undefined;
511
+ 'text-padding'?: undefined;
512
+ 'text-anchor'?: undefined;
513
+ 'icon-image'?: undefined;
514
+ 'text-offset'?: undefined;
515
+ 'icon-rotation-alignment'?: undefined;
516
+ 'icon-size'?: undefined;
517
+ 'text-transform'?: undefined;
518
+ };
519
+ paint: {
520
+ 'fill-translate': {
521
+ base: number;
522
+ stops: (number | number[])[][];
523
+ };
524
+ 'fill-outline-color': string;
525
+ 'fill-color': string;
526
+ 'fill-opacity': {
527
+ base: number;
528
+ stops: number[][];
529
+ };
530
+ 'background-color'?: undefined;
531
+ 'line-color'?: undefined;
532
+ 'line-dasharray'?: undefined;
533
+ 'fill-antialias'?: undefined;
534
+ 'line-width'?: undefined;
535
+ 'fill-pattern'?: undefined;
536
+ 'line-opacity'?: undefined;
537
+ 'text-color'?: undefined;
538
+ 'text-halo-width'?: undefined;
539
+ 'text-halo-color'?: undefined;
540
+ 'text-halo-blur'?: undefined;
541
+ };
542
+ filter?: undefined;
543
+ maxzoom?: undefined;
544
+ minzoom?: undefined;
545
+ } | {
546
+ id: string;
547
+ type: string;
548
+ metadata: {
549
+ 'mapbox:group': string;
550
+ };
551
+ source: string;
552
+ 'source-layer': string;
553
+ filter: (string | string[])[];
554
+ layout: {
555
+ 'line-join': string;
556
+ visibility?: undefined;
557
+ 'line-cap'?: undefined;
558
+ 'text-font'?: undefined;
559
+ 'text-size'?: undefined;
560
+ 'text-field'?: undefined;
561
+ 'text-max-width'?: undefined;
562
+ 'text-rotation-alignment'?: undefined;
563
+ 'symbol-placement'?: undefined;
564
+ 'text-letter-spacing'?: undefined;
565
+ 'symbol-spacing'?: undefined;
566
+ 'text-padding'?: undefined;
567
+ 'text-anchor'?: undefined;
568
+ 'icon-image'?: undefined;
569
+ 'text-offset'?: undefined;
570
+ 'icon-rotation-alignment'?: undefined;
571
+ 'icon-size'?: undefined;
572
+ 'text-transform'?: undefined;
573
+ };
574
+ paint: {
575
+ 'line-color': string;
576
+ 'line-dasharray': number[];
577
+ 'line-width': {
578
+ base: number;
579
+ stops: number[][];
580
+ };
581
+ 'background-color'?: undefined;
582
+ 'fill-color'?: undefined;
583
+ 'fill-opacity'?: undefined;
584
+ 'fill-outline-color'?: undefined;
585
+ 'fill-antialias'?: undefined;
586
+ 'fill-translate'?: undefined;
587
+ 'fill-pattern'?: undefined;
588
+ 'line-opacity'?: undefined;
589
+ 'text-color'?: undefined;
590
+ 'text-halo-width'?: undefined;
591
+ 'text-halo-color'?: undefined;
592
+ 'text-halo-blur'?: undefined;
593
+ };
594
+ maxzoom?: undefined;
595
+ minzoom?: undefined;
596
+ } | {
597
+ id: string;
598
+ type: string;
599
+ metadata: {
600
+ 'mapbox:group': string;
601
+ };
602
+ source: string;
603
+ 'source-layer': string;
604
+ filter: (string | string[])[];
605
+ layout: {
606
+ 'line-join': string;
607
+ visibility?: undefined;
608
+ 'line-cap'?: undefined;
609
+ 'text-font'?: undefined;
610
+ 'text-size'?: undefined;
611
+ 'text-field'?: undefined;
612
+ 'text-max-width'?: undefined;
613
+ 'text-rotation-alignment'?: undefined;
614
+ 'symbol-placement'?: undefined;
615
+ 'text-letter-spacing'?: undefined;
616
+ 'symbol-spacing'?: undefined;
617
+ 'text-padding'?: undefined;
618
+ 'text-anchor'?: undefined;
619
+ 'icon-image'?: undefined;
620
+ 'text-offset'?: undefined;
621
+ 'icon-rotation-alignment'?: undefined;
622
+ 'icon-size'?: undefined;
623
+ 'text-transform'?: undefined;
624
+ };
625
+ paint: {
626
+ 'line-color': string;
627
+ 'line-opacity': {
628
+ stops: number[][];
629
+ base?: undefined;
630
+ };
631
+ 'line-width': {
632
+ base: number;
633
+ stops: number[][];
634
+ };
635
+ 'background-color'?: undefined;
636
+ 'fill-color'?: undefined;
637
+ 'fill-opacity'?: undefined;
638
+ 'line-dasharray'?: undefined;
639
+ 'fill-outline-color'?: undefined;
640
+ 'fill-antialias'?: undefined;
641
+ 'fill-translate'?: undefined;
642
+ 'fill-pattern'?: undefined;
643
+ 'text-color'?: undefined;
644
+ 'text-halo-width'?: undefined;
645
+ 'text-halo-color'?: undefined;
646
+ 'text-halo-blur'?: undefined;
647
+ };
648
+ maxzoom?: undefined;
649
+ minzoom?: undefined;
650
+ } | {
651
+ id: string;
652
+ type: string;
653
+ metadata: {
654
+ 'mapbox:group': string;
655
+ };
656
+ source: string;
657
+ 'source-layer': string;
658
+ filter: (string | string[])[];
659
+ layout: {
660
+ 'line-join': string;
661
+ visibility?: undefined;
662
+ 'line-cap'?: undefined;
663
+ 'text-font'?: undefined;
664
+ 'text-size'?: undefined;
665
+ 'text-field'?: undefined;
666
+ 'text-max-width'?: undefined;
667
+ 'text-rotation-alignment'?: undefined;
668
+ 'symbol-placement'?: undefined;
669
+ 'text-letter-spacing'?: undefined;
670
+ 'symbol-spacing'?: undefined;
671
+ 'text-padding'?: undefined;
672
+ 'text-anchor'?: undefined;
673
+ 'icon-image'?: undefined;
674
+ 'text-offset'?: undefined;
675
+ 'icon-rotation-alignment'?: undefined;
676
+ 'icon-size'?: undefined;
677
+ 'text-transform'?: undefined;
678
+ };
679
+ paint: {
680
+ 'line-color': string;
681
+ 'line-opacity': number;
682
+ 'line-width': {
683
+ base: number;
684
+ stops: number[][];
685
+ };
686
+ 'background-color'?: undefined;
687
+ 'fill-color'?: undefined;
688
+ 'fill-opacity'?: undefined;
689
+ 'line-dasharray'?: undefined;
690
+ 'fill-outline-color'?: undefined;
691
+ 'fill-antialias'?: undefined;
692
+ 'fill-translate'?: undefined;
693
+ 'fill-pattern'?: undefined;
694
+ 'text-color'?: undefined;
695
+ 'text-halo-width'?: undefined;
696
+ 'text-halo-color'?: undefined;
697
+ 'text-halo-blur'?: undefined;
698
+ };
699
+ maxzoom?: undefined;
700
+ minzoom?: undefined;
701
+ } | {
702
+ id: string;
703
+ type: string;
704
+ metadata: {
705
+ 'mapbox:group': string;
706
+ };
707
+ source: string;
708
+ 'source-layer': string;
709
+ filter: (string | string[])[];
710
+ layout: {
711
+ 'line-join': string;
712
+ visibility?: undefined;
713
+ 'line-cap'?: undefined;
714
+ 'text-font'?: undefined;
715
+ 'text-size'?: undefined;
716
+ 'text-field'?: undefined;
717
+ 'text-max-width'?: undefined;
718
+ 'text-rotation-alignment'?: undefined;
719
+ 'symbol-placement'?: undefined;
720
+ 'text-letter-spacing'?: undefined;
721
+ 'symbol-spacing'?: undefined;
722
+ 'text-padding'?: undefined;
723
+ 'text-anchor'?: undefined;
724
+ 'icon-image'?: undefined;
725
+ 'text-offset'?: undefined;
726
+ 'icon-rotation-alignment'?: undefined;
727
+ 'icon-size'?: undefined;
728
+ 'text-transform'?: undefined;
729
+ };
730
+ paint: {
731
+ 'line-color': string;
732
+ 'line-width': {
733
+ base: number;
734
+ stops: number[][];
735
+ };
736
+ 'background-color'?: undefined;
737
+ 'fill-color'?: undefined;
738
+ 'fill-opacity'?: undefined;
739
+ 'line-dasharray'?: undefined;
740
+ 'fill-outline-color'?: undefined;
741
+ 'fill-antialias'?: undefined;
742
+ 'fill-translate'?: undefined;
743
+ 'fill-pattern'?: undefined;
744
+ 'line-opacity'?: undefined;
745
+ 'text-color'?: undefined;
746
+ 'text-halo-width'?: undefined;
747
+ 'text-halo-color'?: undefined;
748
+ 'text-halo-blur'?: undefined;
749
+ };
750
+ maxzoom?: undefined;
751
+ minzoom?: undefined;
752
+ } | {
753
+ id: string;
754
+ type: string;
755
+ metadata: {
756
+ 'mapbox:group': string;
757
+ };
758
+ source: string;
759
+ 'source-layer': string;
760
+ filter: (string | string[])[];
761
+ layout: {
762
+ 'line-join': string;
763
+ visibility: string;
764
+ 'line-cap'?: undefined;
765
+ 'text-font'?: undefined;
766
+ 'text-size'?: undefined;
767
+ 'text-field'?: undefined;
768
+ 'text-max-width'?: undefined;
769
+ 'text-rotation-alignment'?: undefined;
770
+ 'symbol-placement'?: undefined;
771
+ 'text-letter-spacing'?: undefined;
772
+ 'symbol-spacing'?: undefined;
773
+ 'text-padding'?: undefined;
774
+ 'text-anchor'?: undefined;
775
+ 'icon-image'?: undefined;
776
+ 'text-offset'?: undefined;
777
+ 'icon-rotation-alignment'?: undefined;
778
+ 'icon-size'?: undefined;
779
+ 'text-transform'?: undefined;
780
+ };
781
+ paint: {
782
+ 'line-color': string;
783
+ 'line-dasharray': number[];
784
+ 'line-width': {
785
+ base: number;
786
+ stops: number[][];
787
+ };
788
+ 'background-color'?: undefined;
789
+ 'fill-color'?: undefined;
790
+ 'fill-opacity'?: undefined;
791
+ 'fill-outline-color'?: undefined;
792
+ 'fill-antialias'?: undefined;
793
+ 'fill-translate'?: undefined;
794
+ 'fill-pattern'?: undefined;
795
+ 'line-opacity'?: undefined;
796
+ 'text-color'?: undefined;
797
+ 'text-halo-width'?: undefined;
798
+ 'text-halo-color'?: undefined;
799
+ 'text-halo-blur'?: undefined;
800
+ };
801
+ maxzoom?: undefined;
802
+ minzoom?: undefined;
803
+ } | {
804
+ id: string;
805
+ type: string;
806
+ metadata: {
807
+ 'mapbox:group': string;
808
+ };
809
+ source: string;
810
+ 'source-layer': string;
811
+ filter: (string | (string | string[])[])[];
812
+ paint: {
813
+ 'line-color': string;
814
+ 'line-dasharray': number[];
815
+ 'line-width': {
816
+ base: number;
817
+ stops: number[][];
818
+ };
819
+ 'background-color'?: undefined;
820
+ 'fill-color'?: undefined;
821
+ 'fill-opacity'?: undefined;
822
+ 'fill-outline-color'?: undefined;
823
+ 'fill-antialias'?: undefined;
824
+ 'fill-translate'?: undefined;
825
+ 'fill-pattern'?: undefined;
826
+ 'line-opacity'?: undefined;
827
+ 'text-color'?: undefined;
828
+ 'text-halo-width'?: undefined;
829
+ 'text-halo-color'?: undefined;
830
+ 'text-halo-blur'?: undefined;
831
+ };
832
+ layout?: undefined;
833
+ maxzoom?: undefined;
834
+ minzoom?: undefined;
835
+ } | {
836
+ id: string;
837
+ type: string;
838
+ metadata: {
839
+ 'mapbox:group': string;
840
+ };
841
+ source: string;
842
+ 'source-layer': string;
843
+ filter: (string | string[])[];
844
+ layout: {
845
+ 'line-join': string;
846
+ visibility: string;
847
+ 'line-cap'?: undefined;
848
+ 'text-font'?: undefined;
849
+ 'text-size'?: undefined;
850
+ 'text-field'?: undefined;
851
+ 'text-max-width'?: undefined;
852
+ 'text-rotation-alignment'?: undefined;
853
+ 'symbol-placement'?: undefined;
854
+ 'text-letter-spacing'?: undefined;
855
+ 'symbol-spacing'?: undefined;
856
+ 'text-padding'?: undefined;
857
+ 'text-anchor'?: undefined;
858
+ 'icon-image'?: undefined;
859
+ 'text-offset'?: undefined;
860
+ 'icon-rotation-alignment'?: undefined;
861
+ 'icon-size'?: undefined;
862
+ 'text-transform'?: undefined;
863
+ };
864
+ paint: {
865
+ 'line-color': string;
866
+ 'line-width': {
867
+ base: number;
868
+ stops: number[][];
869
+ };
870
+ 'background-color'?: undefined;
871
+ 'fill-color'?: undefined;
872
+ 'fill-opacity'?: undefined;
873
+ 'line-dasharray'?: undefined;
874
+ 'fill-outline-color'?: undefined;
875
+ 'fill-antialias'?: undefined;
876
+ 'fill-translate'?: undefined;
877
+ 'fill-pattern'?: undefined;
878
+ 'line-opacity'?: undefined;
879
+ 'text-color'?: undefined;
880
+ 'text-halo-width'?: undefined;
881
+ 'text-halo-color'?: undefined;
882
+ 'text-halo-blur'?: undefined;
883
+ };
884
+ maxzoom?: undefined;
885
+ minzoom?: undefined;
886
+ } | {
887
+ id: string;
888
+ type: string;
889
+ metadata: {
890
+ 'mapbox:group': string;
891
+ };
892
+ source: string;
893
+ 'source-layer': string;
894
+ minzoom: number;
895
+ filter: (string | string[])[];
896
+ layout: {
897
+ 'line-cap': string;
898
+ 'line-join': string;
899
+ visibility: string;
900
+ 'text-font'?: undefined;
901
+ 'text-size'?: undefined;
902
+ 'text-field'?: undefined;
903
+ 'text-max-width'?: undefined;
904
+ 'text-rotation-alignment'?: undefined;
905
+ 'symbol-placement'?: undefined;
906
+ 'text-letter-spacing'?: undefined;
907
+ 'symbol-spacing'?: undefined;
908
+ 'text-padding'?: undefined;
909
+ 'text-anchor'?: undefined;
910
+ 'icon-image'?: undefined;
911
+ 'text-offset'?: undefined;
912
+ 'icon-rotation-alignment'?: undefined;
913
+ 'icon-size'?: undefined;
914
+ 'text-transform'?: undefined;
915
+ };
916
+ paint: {
917
+ 'line-color': string;
918
+ 'line-width': {
919
+ base: number;
920
+ stops: number[][];
921
+ };
922
+ 'line-opacity': number;
923
+ 'background-color'?: undefined;
924
+ 'fill-color'?: undefined;
925
+ 'fill-opacity'?: undefined;
926
+ 'line-dasharray'?: undefined;
927
+ 'fill-outline-color'?: undefined;
928
+ 'fill-antialias'?: undefined;
929
+ 'fill-translate'?: undefined;
930
+ 'fill-pattern'?: undefined;
931
+ 'text-color'?: undefined;
932
+ 'text-halo-width'?: undefined;
933
+ 'text-halo-color'?: undefined;
934
+ 'text-halo-blur'?: undefined;
935
+ };
936
+ maxzoom?: undefined;
937
+ } | {
938
+ id: string;
939
+ type: string;
940
+ metadata: {
941
+ 'mapbox:group': string;
942
+ };
943
+ source: string;
944
+ 'source-layer': string;
945
+ minzoom: number;
946
+ filter: (string | string[])[];
947
+ layout: {
948
+ visibility: string;
949
+ 'line-cap'?: undefined;
950
+ 'line-join'?: undefined;
951
+ 'text-font'?: undefined;
952
+ 'text-size'?: undefined;
953
+ 'text-field'?: undefined;
954
+ 'text-max-width'?: undefined;
955
+ 'text-rotation-alignment'?: undefined;
956
+ 'symbol-placement'?: undefined;
957
+ 'text-letter-spacing'?: undefined;
958
+ 'symbol-spacing'?: undefined;
959
+ 'text-padding'?: undefined;
960
+ 'text-anchor'?: undefined;
961
+ 'icon-image'?: undefined;
962
+ 'text-offset'?: undefined;
963
+ 'icon-rotation-alignment'?: undefined;
964
+ 'icon-size'?: undefined;
965
+ 'text-transform'?: undefined;
966
+ };
967
+ paint: {
968
+ 'fill-opacity': {
969
+ base: number;
970
+ stops: number[][];
971
+ };
972
+ 'fill-color': string;
973
+ 'background-color'?: undefined;
974
+ 'line-color'?: undefined;
975
+ 'line-dasharray'?: undefined;
976
+ 'fill-outline-color'?: undefined;
977
+ 'fill-antialias'?: undefined;
978
+ 'line-width'?: undefined;
979
+ 'fill-translate'?: undefined;
980
+ 'fill-pattern'?: undefined;
981
+ 'line-opacity'?: undefined;
982
+ 'text-color'?: undefined;
983
+ 'text-halo-width'?: undefined;
984
+ 'text-halo-color'?: undefined;
985
+ 'text-halo-blur'?: undefined;
986
+ };
987
+ maxzoom?: undefined;
988
+ } | {
989
+ id: string;
990
+ type: string;
991
+ metadata: {
992
+ 'mapbox:group': string;
993
+ };
994
+ source: string;
995
+ 'source-layer': string;
996
+ minzoom: number;
997
+ filter: (string | string[])[];
998
+ layout: {
999
+ 'line-cap': string;
1000
+ 'line-join': string;
1001
+ visibility: string;
1002
+ 'text-font'?: undefined;
1003
+ 'text-size'?: undefined;
1004
+ 'text-field'?: undefined;
1005
+ 'text-max-width'?: undefined;
1006
+ 'text-rotation-alignment'?: undefined;
1007
+ 'symbol-placement'?: undefined;
1008
+ 'text-letter-spacing'?: undefined;
1009
+ 'symbol-spacing'?: undefined;
1010
+ 'text-padding'?: undefined;
1011
+ 'text-anchor'?: undefined;
1012
+ 'icon-image'?: undefined;
1013
+ 'text-offset'?: undefined;
1014
+ 'icon-rotation-alignment'?: undefined;
1015
+ 'icon-size'?: undefined;
1016
+ 'text-transform'?: undefined;
1017
+ };
1018
+ paint: {
1019
+ 'line-color': string;
1020
+ 'line-width': {
1021
+ base: number;
1022
+ stops: number[][];
1023
+ };
1024
+ 'line-opacity': {
1025
+ base: number;
1026
+ stops: number[][];
1027
+ };
1028
+ 'background-color'?: undefined;
1029
+ 'fill-color'?: undefined;
1030
+ 'fill-opacity'?: undefined;
1031
+ 'line-dasharray'?: undefined;
1032
+ 'fill-outline-color'?: undefined;
1033
+ 'fill-antialias'?: undefined;
1034
+ 'fill-translate'?: undefined;
1035
+ 'fill-pattern'?: undefined;
1036
+ 'text-color'?: undefined;
1037
+ 'text-halo-width'?: undefined;
1038
+ 'text-halo-color'?: undefined;
1039
+ 'text-halo-blur'?: undefined;
1040
+ };
1041
+ maxzoom?: undefined;
1042
+ } | {
1043
+ id: string;
1044
+ type: string;
1045
+ metadata: {
1046
+ 'mapbox:group': string;
1047
+ };
1048
+ source: string;
1049
+ 'source-layer': string;
1050
+ filter: string[];
1051
+ layout: {
1052
+ visibility: string;
1053
+ 'line-cap'?: undefined;
1054
+ 'line-join'?: undefined;
1055
+ 'text-font'?: undefined;
1056
+ 'text-size'?: undefined;
1057
+ 'text-field'?: undefined;
1058
+ 'text-max-width'?: undefined;
1059
+ 'text-rotation-alignment'?: undefined;
1060
+ 'symbol-placement'?: undefined;
1061
+ 'text-letter-spacing'?: undefined;
1062
+ 'symbol-spacing'?: undefined;
1063
+ 'text-padding'?: undefined;
1064
+ 'text-anchor'?: undefined;
1065
+ 'icon-image'?: undefined;
1066
+ 'text-offset'?: undefined;
1067
+ 'icon-rotation-alignment'?: undefined;
1068
+ 'icon-size'?: undefined;
1069
+ 'text-transform'?: undefined;
1070
+ };
1071
+ paint: {
1072
+ 'fill-color': string;
1073
+ 'fill-outline-color': string;
1074
+ 'fill-opacity': number;
1075
+ 'fill-antialias': boolean;
1076
+ 'background-color'?: undefined;
1077
+ 'line-color'?: undefined;
1078
+ 'line-dasharray'?: undefined;
1079
+ 'line-width'?: undefined;
1080
+ 'fill-translate'?: undefined;
1081
+ 'fill-pattern'?: undefined;
1082
+ 'line-opacity'?: undefined;
1083
+ 'text-color'?: undefined;
1084
+ 'text-halo-width'?: undefined;
1085
+ 'text-halo-color'?: undefined;
1086
+ 'text-halo-blur'?: undefined;
1087
+ };
1088
+ maxzoom?: undefined;
1089
+ minzoom?: undefined;
1090
+ } | {
1091
+ id: string;
1092
+ type: string;
1093
+ metadata: {
1094
+ 'mapbox:group': string;
1095
+ };
1096
+ source: string;
1097
+ 'source-layer': string;
1098
+ minzoom: number;
1099
+ filter: (string | string[])[];
1100
+ layout: {
1101
+ 'line-cap': string;
1102
+ 'line-join': string;
1103
+ visibility?: undefined;
1104
+ 'text-font'?: undefined;
1105
+ 'text-size'?: undefined;
1106
+ 'text-field'?: undefined;
1107
+ 'text-max-width'?: undefined;
1108
+ 'text-rotation-alignment'?: undefined;
1109
+ 'symbol-placement'?: undefined;
1110
+ 'text-letter-spacing'?: undefined;
1111
+ 'symbol-spacing'?: undefined;
1112
+ 'text-padding'?: undefined;
1113
+ 'text-anchor'?: undefined;
1114
+ 'icon-image'?: undefined;
1115
+ 'text-offset'?: undefined;
1116
+ 'icon-rotation-alignment'?: undefined;
1117
+ 'icon-size'?: undefined;
1118
+ 'text-transform'?: undefined;
1119
+ };
1120
+ paint: {
1121
+ 'line-color': string;
1122
+ 'line-opacity': number;
1123
+ 'line-width': {
1124
+ base: number;
1125
+ stops: number[][];
1126
+ };
1127
+ 'background-color'?: undefined;
1128
+ 'fill-color'?: undefined;
1129
+ 'fill-opacity'?: undefined;
1130
+ 'line-dasharray'?: undefined;
1131
+ 'fill-outline-color'?: undefined;
1132
+ 'fill-antialias'?: undefined;
1133
+ 'fill-translate'?: undefined;
1134
+ 'fill-pattern'?: undefined;
1135
+ 'text-color'?: undefined;
1136
+ 'text-halo-width'?: undefined;
1137
+ 'text-halo-color'?: undefined;
1138
+ 'text-halo-blur'?: undefined;
1139
+ };
1140
+ maxzoom?: undefined;
1141
+ } | {
1142
+ id: string;
1143
+ type: string;
1144
+ metadata: {
1145
+ 'mapbox:group': string;
1146
+ };
1147
+ source: string;
1148
+ 'source-layer': string;
1149
+ filter: (string | (string | string[])[])[];
1150
+ layout: {
1151
+ 'line-cap': string;
1152
+ 'line-join': string;
1153
+ visibility?: undefined;
1154
+ 'text-font'?: undefined;
1155
+ 'text-size'?: undefined;
1156
+ 'text-field'?: undefined;
1157
+ 'text-max-width'?: undefined;
1158
+ 'text-rotation-alignment'?: undefined;
1159
+ 'symbol-placement'?: undefined;
1160
+ 'text-letter-spacing'?: undefined;
1161
+ 'symbol-spacing'?: undefined;
1162
+ 'text-padding'?: undefined;
1163
+ 'text-anchor'?: undefined;
1164
+ 'icon-image'?: undefined;
1165
+ 'text-offset'?: undefined;
1166
+ 'icon-rotation-alignment'?: undefined;
1167
+ 'icon-size'?: undefined;
1168
+ 'text-transform'?: undefined;
1169
+ };
1170
+ paint: {
1171
+ 'line-color': string;
1172
+ 'line-opacity': {
1173
+ stops: number[][];
1174
+ base?: undefined;
1175
+ };
1176
+ 'line-width': {
1177
+ base: number;
1178
+ stops: number[][];
1179
+ };
1180
+ 'background-color'?: undefined;
1181
+ 'fill-color'?: undefined;
1182
+ 'fill-opacity'?: undefined;
1183
+ 'line-dasharray'?: undefined;
1184
+ 'fill-outline-color'?: undefined;
1185
+ 'fill-antialias'?: undefined;
1186
+ 'fill-translate'?: undefined;
1187
+ 'fill-pattern'?: undefined;
1188
+ 'text-color'?: undefined;
1189
+ 'text-halo-width'?: undefined;
1190
+ 'text-halo-color'?: undefined;
1191
+ 'text-halo-blur'?: undefined;
1192
+ };
1193
+ maxzoom?: undefined;
1194
+ minzoom?: undefined;
1195
+ } | {
1196
+ id: string;
1197
+ type: string;
1198
+ metadata: {
1199
+ 'mapbox:group': string;
1200
+ };
1201
+ source: string;
1202
+ 'source-layer': string;
1203
+ filter: (string | string[])[];
1204
+ layout: {
1205
+ 'line-cap': string;
1206
+ 'line-join': string;
1207
+ visibility: string;
1208
+ 'text-font'?: undefined;
1209
+ 'text-size'?: undefined;
1210
+ 'text-field'?: undefined;
1211
+ 'text-max-width'?: undefined;
1212
+ 'text-rotation-alignment'?: undefined;
1213
+ 'symbol-placement'?: undefined;
1214
+ 'text-letter-spacing'?: undefined;
1215
+ 'symbol-spacing'?: undefined;
1216
+ 'text-padding'?: undefined;
1217
+ 'text-anchor'?: undefined;
1218
+ 'icon-image'?: undefined;
1219
+ 'text-offset'?: undefined;
1220
+ 'icon-rotation-alignment'?: undefined;
1221
+ 'icon-size'?: undefined;
1222
+ 'text-transform'?: undefined;
1223
+ };
1224
+ paint: {
1225
+ 'line-color': string;
1226
+ 'line-opacity': number;
1227
+ 'line-width': {
1228
+ base: number;
1229
+ stops: number[][];
1230
+ };
1231
+ 'background-color'?: undefined;
1232
+ 'fill-color'?: undefined;
1233
+ 'fill-opacity'?: undefined;
1234
+ 'line-dasharray'?: undefined;
1235
+ 'fill-outline-color'?: undefined;
1236
+ 'fill-antialias'?: undefined;
1237
+ 'fill-translate'?: undefined;
1238
+ 'fill-pattern'?: undefined;
1239
+ 'text-color'?: undefined;
1240
+ 'text-halo-width'?: undefined;
1241
+ 'text-halo-color'?: undefined;
1242
+ 'text-halo-blur'?: undefined;
1243
+ };
1244
+ maxzoom?: undefined;
1245
+ minzoom?: undefined;
1246
+ } | {
1247
+ id: string;
1248
+ type: string;
1249
+ metadata: {
1250
+ 'mapbox:group': string;
1251
+ };
1252
+ source: string;
1253
+ 'source-layer': string;
1254
+ minzoom: number;
1255
+ filter: (string | string[])[];
1256
+ layout: {
1257
+ 'line-cap': string;
1258
+ 'line-join': string;
1259
+ visibility: string;
1260
+ 'text-font'?: undefined;
1261
+ 'text-size'?: undefined;
1262
+ 'text-field'?: undefined;
1263
+ 'text-max-width'?: undefined;
1264
+ 'text-rotation-alignment'?: undefined;
1265
+ 'symbol-placement'?: undefined;
1266
+ 'text-letter-spacing'?: undefined;
1267
+ 'symbol-spacing'?: undefined;
1268
+ 'text-padding'?: undefined;
1269
+ 'text-anchor'?: undefined;
1270
+ 'icon-image'?: undefined;
1271
+ 'text-offset'?: undefined;
1272
+ 'icon-rotation-alignment'?: undefined;
1273
+ 'icon-size'?: undefined;
1274
+ 'text-transform'?: undefined;
1275
+ };
1276
+ paint: {
1277
+ 'line-color': string;
1278
+ 'line-opacity': {
1279
+ stops: number[][];
1280
+ base?: undefined;
1281
+ };
1282
+ 'line-width': {
1283
+ base: number;
1284
+ stops: number[][];
1285
+ };
1286
+ 'background-color'?: undefined;
1287
+ 'fill-color'?: undefined;
1288
+ 'fill-opacity'?: undefined;
1289
+ 'line-dasharray'?: undefined;
1290
+ 'fill-outline-color'?: undefined;
1291
+ 'fill-antialias'?: undefined;
1292
+ 'fill-translate'?: undefined;
1293
+ 'fill-pattern'?: undefined;
1294
+ 'text-color'?: undefined;
1295
+ 'text-halo-width'?: undefined;
1296
+ 'text-halo-color'?: undefined;
1297
+ 'text-halo-blur'?: undefined;
1298
+ };
1299
+ maxzoom?: undefined;
1300
+ } | {
1301
+ id: string;
1302
+ type: string;
1303
+ metadata: {
1304
+ 'mapbox:group': string;
1305
+ };
1306
+ source: string;
1307
+ 'source-layer': string;
1308
+ minzoom: number;
1309
+ filter: (string | string[])[];
1310
+ layout: {
1311
+ 'line-cap': string;
1312
+ 'line-join': string;
1313
+ visibility?: undefined;
1314
+ 'text-font'?: undefined;
1315
+ 'text-size'?: undefined;
1316
+ 'text-field'?: undefined;
1317
+ 'text-max-width'?: undefined;
1318
+ 'text-rotation-alignment'?: undefined;
1319
+ 'symbol-placement'?: undefined;
1320
+ 'text-letter-spacing'?: undefined;
1321
+ 'symbol-spacing'?: undefined;
1322
+ 'text-padding'?: undefined;
1323
+ 'text-anchor'?: undefined;
1324
+ 'icon-image'?: undefined;
1325
+ 'text-offset'?: undefined;
1326
+ 'icon-rotation-alignment'?: undefined;
1327
+ 'icon-size'?: undefined;
1328
+ 'text-transform'?: undefined;
1329
+ };
1330
+ paint: {
1331
+ 'line-color': string;
1332
+ 'line-width': {
1333
+ base: number;
1334
+ stops: number[][];
1335
+ };
1336
+ 'background-color'?: undefined;
1337
+ 'fill-color'?: undefined;
1338
+ 'fill-opacity'?: undefined;
1339
+ 'line-dasharray'?: undefined;
1340
+ 'fill-outline-color'?: undefined;
1341
+ 'fill-antialias'?: undefined;
1342
+ 'fill-translate'?: undefined;
1343
+ 'fill-pattern'?: undefined;
1344
+ 'line-opacity'?: undefined;
1345
+ 'text-color'?: undefined;
1346
+ 'text-halo-width'?: undefined;
1347
+ 'text-halo-color'?: undefined;
1348
+ 'text-halo-blur'?: undefined;
1349
+ };
1350
+ maxzoom?: undefined;
1351
+ } | {
1352
+ id: string;
1353
+ type: string;
1354
+ metadata: {
1355
+ 'mapbox:group': string;
1356
+ };
1357
+ source: string;
1358
+ 'source-layer': string;
1359
+ filter: (string | (string | string[])[])[];
1360
+ layout: {
1361
+ 'line-cap': string;
1362
+ 'line-join': string;
1363
+ visibility?: undefined;
1364
+ 'text-font'?: undefined;
1365
+ 'text-size'?: undefined;
1366
+ 'text-field'?: undefined;
1367
+ 'text-max-width'?: undefined;
1368
+ 'text-rotation-alignment'?: undefined;
1369
+ 'symbol-placement'?: undefined;
1370
+ 'text-letter-spacing'?: undefined;
1371
+ 'symbol-spacing'?: undefined;
1372
+ 'text-padding'?: undefined;
1373
+ 'text-anchor'?: undefined;
1374
+ 'icon-image'?: undefined;
1375
+ 'text-offset'?: undefined;
1376
+ 'icon-rotation-alignment'?: undefined;
1377
+ 'icon-size'?: undefined;
1378
+ 'text-transform'?: undefined;
1379
+ };
1380
+ paint: {
1381
+ 'line-color': string;
1382
+ 'line-opacity': number;
1383
+ 'line-width': {
1384
+ base: number;
1385
+ stops: number[][];
1386
+ };
1387
+ 'background-color'?: undefined;
1388
+ 'fill-color'?: undefined;
1389
+ 'fill-opacity'?: undefined;
1390
+ 'line-dasharray'?: undefined;
1391
+ 'fill-outline-color'?: undefined;
1392
+ 'fill-antialias'?: undefined;
1393
+ 'fill-translate'?: undefined;
1394
+ 'fill-pattern'?: undefined;
1395
+ 'text-color'?: undefined;
1396
+ 'text-halo-width'?: undefined;
1397
+ 'text-halo-color'?: undefined;
1398
+ 'text-halo-blur'?: undefined;
1399
+ };
1400
+ maxzoom?: undefined;
1401
+ minzoom?: undefined;
1402
+ } | {
1403
+ id: string;
1404
+ type: string;
1405
+ metadata: {
1406
+ 'mapbox:group': string;
1407
+ };
1408
+ source: string;
1409
+ 'source-layer': string;
1410
+ filter: (string | (string | string[])[])[];
1411
+ layout: {
1412
+ 'line-cap': string;
1413
+ 'line-join': string;
1414
+ visibility: string;
1415
+ 'text-font'?: undefined;
1416
+ 'text-size'?: undefined;
1417
+ 'text-field'?: undefined;
1418
+ 'text-max-width'?: undefined;
1419
+ 'text-rotation-alignment'?: undefined;
1420
+ 'symbol-placement'?: undefined;
1421
+ 'text-letter-spacing'?: undefined;
1422
+ 'symbol-spacing'?: undefined;
1423
+ 'text-padding'?: undefined;
1424
+ 'text-anchor'?: undefined;
1425
+ 'icon-image'?: undefined;
1426
+ 'text-offset'?: undefined;
1427
+ 'icon-rotation-alignment'?: undefined;
1428
+ 'icon-size'?: undefined;
1429
+ 'text-transform'?: undefined;
1430
+ };
1431
+ paint: {
1432
+ 'line-color': string;
1433
+ 'line-width': {
1434
+ base: number;
1435
+ stops: number[][];
1436
+ };
1437
+ 'background-color'?: undefined;
1438
+ 'fill-color'?: undefined;
1439
+ 'fill-opacity'?: undefined;
1440
+ 'line-dasharray'?: undefined;
1441
+ 'fill-outline-color'?: undefined;
1442
+ 'fill-antialias'?: undefined;
1443
+ 'fill-translate'?: undefined;
1444
+ 'fill-pattern'?: undefined;
1445
+ 'line-opacity'?: undefined;
1446
+ 'text-color'?: undefined;
1447
+ 'text-halo-width'?: undefined;
1448
+ 'text-halo-color'?: undefined;
1449
+ 'text-halo-blur'?: undefined;
1450
+ };
1451
+ maxzoom?: undefined;
1452
+ minzoom?: undefined;
1453
+ } | {
1454
+ id: string;
1455
+ type: string;
1456
+ metadata: {
1457
+ 'mapbox:group': string;
1458
+ };
1459
+ source: string;
1460
+ 'source-layer': string;
1461
+ minzoom: number;
1462
+ filter: (string | (string | string[])[])[];
1463
+ layout: {
1464
+ 'line-cap': string;
1465
+ 'line-join': string;
1466
+ visibility: string;
1467
+ 'text-font'?: undefined;
1468
+ 'text-size'?: undefined;
1469
+ 'text-field'?: undefined;
1470
+ 'text-max-width'?: undefined;
1471
+ 'text-rotation-alignment'?: undefined;
1472
+ 'symbol-placement'?: undefined;
1473
+ 'text-letter-spacing'?: undefined;
1474
+ 'symbol-spacing'?: undefined;
1475
+ 'text-padding'?: undefined;
1476
+ 'text-anchor'?: undefined;
1477
+ 'icon-image'?: undefined;
1478
+ 'text-offset'?: undefined;
1479
+ 'icon-rotation-alignment'?: undefined;
1480
+ 'icon-size'?: undefined;
1481
+ 'text-transform'?: undefined;
1482
+ };
1483
+ paint: {
1484
+ 'line-color': string;
1485
+ 'line-width': {
1486
+ base: number;
1487
+ stops: number[][];
1488
+ };
1489
+ 'background-color'?: undefined;
1490
+ 'fill-color'?: undefined;
1491
+ 'fill-opacity'?: undefined;
1492
+ 'line-dasharray'?: undefined;
1493
+ 'fill-outline-color'?: undefined;
1494
+ 'fill-antialias'?: undefined;
1495
+ 'fill-translate'?: undefined;
1496
+ 'fill-pattern'?: undefined;
1497
+ 'line-opacity'?: undefined;
1498
+ 'text-color'?: undefined;
1499
+ 'text-halo-width'?: undefined;
1500
+ 'text-halo-color'?: undefined;
1501
+ 'text-halo-blur'?: undefined;
1502
+ };
1503
+ maxzoom?: undefined;
1504
+ } | {
1505
+ id: string;
1506
+ type: string;
1507
+ metadata: {
1508
+ 'mapbox:group': string;
1509
+ };
1510
+ source: string;
1511
+ 'source-layer': string;
1512
+ filter: (string | (string | string[])[])[];
1513
+ paint: {
1514
+ 'line-color': string;
1515
+ 'line-width': {
1516
+ base: number;
1517
+ stops: number[][];
1518
+ };
1519
+ 'background-color'?: undefined;
1520
+ 'fill-color'?: undefined;
1521
+ 'fill-opacity'?: undefined;
1522
+ 'line-dasharray'?: undefined;
1523
+ 'fill-outline-color'?: undefined;
1524
+ 'fill-antialias'?: undefined;
1525
+ 'fill-translate'?: undefined;
1526
+ 'fill-pattern'?: undefined;
1527
+ 'line-opacity'?: undefined;
1528
+ 'text-color'?: undefined;
1529
+ 'text-halo-width'?: undefined;
1530
+ 'text-halo-color'?: undefined;
1531
+ 'text-halo-blur'?: undefined;
1532
+ };
1533
+ layout?: undefined;
1534
+ maxzoom?: undefined;
1535
+ minzoom?: undefined;
1536
+ } | {
1537
+ id: string;
1538
+ type: string;
1539
+ metadata: {
1540
+ 'mapbox:group': string;
1541
+ };
1542
+ source: string;
1543
+ 'source-layer': string;
1544
+ filter: (string | (string | string[])[])[];
1545
+ layout: {
1546
+ visibility: string;
1547
+ 'line-cap'?: undefined;
1548
+ 'line-join'?: undefined;
1549
+ 'text-font'?: undefined;
1550
+ 'text-size'?: undefined;
1551
+ 'text-field'?: undefined;
1552
+ 'text-max-width'?: undefined;
1553
+ 'text-rotation-alignment'?: undefined;
1554
+ 'symbol-placement'?: undefined;
1555
+ 'text-letter-spacing'?: undefined;
1556
+ 'symbol-spacing'?: undefined;
1557
+ 'text-padding'?: undefined;
1558
+ 'text-anchor'?: undefined;
1559
+ 'icon-image'?: undefined;
1560
+ 'text-offset'?: undefined;
1561
+ 'icon-rotation-alignment'?: undefined;
1562
+ 'icon-size'?: undefined;
1563
+ 'text-transform'?: undefined;
1564
+ };
1565
+ paint: {
1566
+ 'line-color': string;
1567
+ 'line-dasharray': number[];
1568
+ 'line-width': {
1569
+ base: number;
1570
+ stops: number[][];
1571
+ };
1572
+ 'background-color'?: undefined;
1573
+ 'fill-color'?: undefined;
1574
+ 'fill-opacity'?: undefined;
1575
+ 'fill-outline-color'?: undefined;
1576
+ 'fill-antialias'?: undefined;
1577
+ 'fill-translate'?: undefined;
1578
+ 'fill-pattern'?: undefined;
1579
+ 'line-opacity'?: undefined;
1580
+ 'text-color'?: undefined;
1581
+ 'text-halo-width'?: undefined;
1582
+ 'text-halo-color'?: undefined;
1583
+ 'text-halo-blur'?: undefined;
1584
+ };
1585
+ maxzoom?: undefined;
1586
+ minzoom?: undefined;
1587
+ } | {
1588
+ id: string;
1589
+ type: string;
1590
+ source: string;
1591
+ 'source-layer': string;
1592
+ filter: (string | (string | number)[])[];
1593
+ layout: {
1594
+ 'line-join': string;
1595
+ visibility?: undefined;
1596
+ 'line-cap'?: undefined;
1597
+ 'text-font'?: undefined;
1598
+ 'text-size'?: undefined;
1599
+ 'text-field'?: undefined;
1600
+ 'text-max-width'?: undefined;
1601
+ 'text-rotation-alignment'?: undefined;
1602
+ 'symbol-placement'?: undefined;
1603
+ 'text-letter-spacing'?: undefined;
1604
+ 'symbol-spacing'?: undefined;
1605
+ 'text-padding'?: undefined;
1606
+ 'text-anchor'?: undefined;
1607
+ 'icon-image'?: undefined;
1608
+ 'text-offset'?: undefined;
1609
+ 'icon-rotation-alignment'?: undefined;
1610
+ 'icon-size'?: undefined;
1611
+ 'text-transform'?: undefined;
1612
+ };
1613
+ paint: {
1614
+ 'line-color': string;
1615
+ 'line-dasharray': number[];
1616
+ 'line-width': {
1617
+ base: number;
1618
+ stops: number[][];
1619
+ };
1620
+ 'background-color'?: undefined;
1621
+ 'fill-color'?: undefined;
1622
+ 'fill-opacity'?: undefined;
1623
+ 'fill-outline-color'?: undefined;
1624
+ 'fill-antialias'?: undefined;
1625
+ 'fill-translate'?: undefined;
1626
+ 'fill-pattern'?: undefined;
1627
+ 'line-opacity'?: undefined;
1628
+ 'text-color'?: undefined;
1629
+ 'text-halo-width'?: undefined;
1630
+ 'text-halo-color'?: undefined;
1631
+ 'text-halo-blur'?: undefined;
1632
+ };
1633
+ metadata?: undefined;
1634
+ maxzoom?: undefined;
1635
+ minzoom?: undefined;
1636
+ } | {
1637
+ id: string;
1638
+ type: string;
1639
+ source: string;
1640
+ 'source-layer': string;
1641
+ filter: (string | (string | number)[])[];
1642
+ layout: {
1643
+ 'line-cap': string;
1644
+ 'line-join': string;
1645
+ visibility?: undefined;
1646
+ 'text-font'?: undefined;
1647
+ 'text-size'?: undefined;
1648
+ 'text-field'?: undefined;
1649
+ 'text-max-width'?: undefined;
1650
+ 'text-rotation-alignment'?: undefined;
1651
+ 'symbol-placement'?: undefined;
1652
+ 'text-letter-spacing'?: undefined;
1653
+ 'symbol-spacing'?: undefined;
1654
+ 'text-padding'?: undefined;
1655
+ 'text-anchor'?: undefined;
1656
+ 'icon-image'?: undefined;
1657
+ 'text-offset'?: undefined;
1658
+ 'icon-rotation-alignment'?: undefined;
1659
+ 'icon-size'?: undefined;
1660
+ 'text-transform'?: undefined;
1661
+ };
1662
+ paint: {
1663
+ 'line-color': string;
1664
+ 'line-width': {
1665
+ base: number;
1666
+ stops: number[][];
1667
+ };
1668
+ 'background-color'?: undefined;
1669
+ 'fill-color'?: undefined;
1670
+ 'fill-opacity'?: undefined;
1671
+ 'line-dasharray'?: undefined;
1672
+ 'fill-outline-color'?: undefined;
1673
+ 'fill-antialias'?: undefined;
1674
+ 'fill-translate'?: undefined;
1675
+ 'fill-pattern'?: undefined;
1676
+ 'line-opacity'?: undefined;
1677
+ 'text-color'?: undefined;
1678
+ 'text-halo-width'?: undefined;
1679
+ 'text-halo-color'?: undefined;
1680
+ 'text-halo-blur'?: undefined;
1681
+ };
1682
+ metadata?: undefined;
1683
+ maxzoom?: undefined;
1684
+ minzoom?: undefined;
1685
+ } | {
1686
+ id: string;
1687
+ type: string;
1688
+ source: string;
1689
+ 'source-layer': string;
1690
+ filter: (string | (string | number)[])[];
1691
+ layout: {
1692
+ 'line-cap': string;
1693
+ 'line-join': string;
1694
+ visibility?: undefined;
1695
+ 'text-font'?: undefined;
1696
+ 'text-size'?: undefined;
1697
+ 'text-field'?: undefined;
1698
+ 'text-max-width'?: undefined;
1699
+ 'text-rotation-alignment'?: undefined;
1700
+ 'symbol-placement'?: undefined;
1701
+ 'text-letter-spacing'?: undefined;
1702
+ 'symbol-spacing'?: undefined;
1703
+ 'text-padding'?: undefined;
1704
+ 'text-anchor'?: undefined;
1705
+ 'icon-image'?: undefined;
1706
+ 'text-offset'?: undefined;
1707
+ 'icon-rotation-alignment'?: undefined;
1708
+ 'icon-size'?: undefined;
1709
+ 'text-transform'?: undefined;
1710
+ };
1711
+ paint: {
1712
+ 'line-color': string;
1713
+ 'line-width': {
1714
+ base: number;
1715
+ stops: number[][];
1716
+ };
1717
+ 'line-opacity': {
1718
+ stops: number[][];
1719
+ base?: undefined;
1720
+ };
1721
+ 'background-color'?: undefined;
1722
+ 'fill-color'?: undefined;
1723
+ 'fill-opacity'?: undefined;
1724
+ 'line-dasharray'?: undefined;
1725
+ 'fill-outline-color'?: undefined;
1726
+ 'fill-antialias'?: undefined;
1727
+ 'fill-translate'?: undefined;
1728
+ 'fill-pattern'?: undefined;
1729
+ 'text-color'?: undefined;
1730
+ 'text-halo-width'?: undefined;
1731
+ 'text-halo-color'?: undefined;
1732
+ 'text-halo-blur'?: undefined;
1733
+ };
1734
+ metadata?: undefined;
1735
+ maxzoom?: undefined;
1736
+ minzoom?: undefined;
1737
+ } | {
1738
+ id: string;
1739
+ type: string;
1740
+ source: string;
1741
+ 'source-layer': string;
1742
+ minzoom: number;
1743
+ filter: (string | string[])[];
1744
+ layout: {
1745
+ 'text-font': string[];
1746
+ 'text-size': number;
1747
+ 'text-field': string;
1748
+ 'text-max-width': number;
1749
+ 'text-rotation-alignment': string;
1750
+ 'symbol-placement': string;
1751
+ 'text-letter-spacing': number;
1752
+ 'symbol-spacing': number;
1753
+ visibility?: undefined;
1754
+ 'line-cap'?: undefined;
1755
+ 'line-join'?: undefined;
1756
+ 'text-padding'?: undefined;
1757
+ 'text-anchor'?: undefined;
1758
+ 'icon-image'?: undefined;
1759
+ 'text-offset'?: undefined;
1760
+ 'icon-rotation-alignment'?: undefined;
1761
+ 'icon-size'?: undefined;
1762
+ 'text-transform'?: undefined;
1763
+ };
1764
+ paint: {
1765
+ 'text-color': string;
1766
+ 'text-halo-width': number;
1767
+ 'text-halo-color': string;
1768
+ 'background-color'?: undefined;
1769
+ 'fill-color'?: undefined;
1770
+ 'fill-opacity'?: undefined;
1771
+ 'line-color'?: undefined;
1772
+ 'line-dasharray'?: undefined;
1773
+ 'fill-outline-color'?: undefined;
1774
+ 'fill-antialias'?: undefined;
1775
+ 'line-width'?: undefined;
1776
+ 'fill-translate'?: undefined;
1777
+ 'fill-pattern'?: undefined;
1778
+ 'line-opacity'?: undefined;
1779
+ 'text-halo-blur'?: undefined;
1780
+ };
1781
+ metadata?: undefined;
1782
+ maxzoom?: undefined;
1783
+ } | {
1784
+ id: string;
1785
+ type: string;
1786
+ source: string;
1787
+ 'source-layer': string;
1788
+ filter: (string | string[])[];
1789
+ layout: {
1790
+ 'text-font': string[];
1791
+ 'text-size': number;
1792
+ 'text-field': string;
1793
+ 'text-max-width': number;
1794
+ 'text-rotation-alignment': string;
1795
+ 'symbol-placement': string;
1796
+ 'symbol-spacing': number;
1797
+ 'text-letter-spacing': number;
1798
+ visibility?: undefined;
1799
+ 'line-cap'?: undefined;
1800
+ 'line-join'?: undefined;
1801
+ 'text-padding'?: undefined;
1802
+ 'text-anchor'?: undefined;
1803
+ 'icon-image'?: undefined;
1804
+ 'text-offset'?: undefined;
1805
+ 'icon-rotation-alignment'?: undefined;
1806
+ 'icon-size'?: undefined;
1807
+ 'text-transform'?: undefined;
1808
+ };
1809
+ paint: {
1810
+ 'text-color': string;
1811
+ 'text-halo-width': number;
1812
+ 'text-halo-color': string;
1813
+ 'background-color'?: undefined;
1814
+ 'fill-color'?: undefined;
1815
+ 'fill-opacity'?: undefined;
1816
+ 'line-color'?: undefined;
1817
+ 'line-dasharray'?: undefined;
1818
+ 'fill-outline-color'?: undefined;
1819
+ 'fill-antialias'?: undefined;
1820
+ 'line-width'?: undefined;
1821
+ 'fill-translate'?: undefined;
1822
+ 'fill-pattern'?: undefined;
1823
+ 'line-opacity'?: undefined;
1824
+ 'text-halo-blur'?: undefined;
1825
+ };
1826
+ metadata?: undefined;
1827
+ maxzoom?: undefined;
1828
+ minzoom?: undefined;
1829
+ } | {
1830
+ id: string;
1831
+ type: string;
1832
+ source: string;
1833
+ 'source-layer': string;
1834
+ filter: (string | string[])[];
1835
+ layout: {
1836
+ 'text-font': string[];
1837
+ 'text-size': {
1838
+ stops: number[][];
1839
+ base?: undefined;
1840
+ };
1841
+ 'text-field': string;
1842
+ 'text-max-width': number;
1843
+ 'text-rotation-alignment': string;
1844
+ 'symbol-placement': string;
1845
+ 'symbol-spacing': number;
1846
+ 'text-letter-spacing': number;
1847
+ visibility: string;
1848
+ 'line-cap'?: undefined;
1849
+ 'line-join'?: undefined;
1850
+ 'text-padding'?: undefined;
1851
+ 'text-anchor'?: undefined;
1852
+ 'icon-image'?: undefined;
1853
+ 'text-offset'?: undefined;
1854
+ 'icon-rotation-alignment'?: undefined;
1855
+ 'icon-size'?: undefined;
1856
+ 'text-transform'?: undefined;
1857
+ };
1858
+ paint: {
1859
+ 'text-color': string;
1860
+ 'text-halo-width': number;
1861
+ 'text-halo-color': string;
1862
+ 'background-color'?: undefined;
1863
+ 'fill-color'?: undefined;
1864
+ 'fill-opacity'?: undefined;
1865
+ 'line-color'?: undefined;
1866
+ 'line-dasharray'?: undefined;
1867
+ 'fill-outline-color'?: undefined;
1868
+ 'fill-antialias'?: undefined;
1869
+ 'line-width'?: undefined;
1870
+ 'fill-translate'?: undefined;
1871
+ 'fill-pattern'?: undefined;
1872
+ 'line-opacity'?: undefined;
1873
+ 'text-halo-blur'?: undefined;
1874
+ };
1875
+ metadata?: undefined;
1876
+ maxzoom?: undefined;
1877
+ minzoom?: undefined;
1878
+ } | {
1879
+ id: string;
1880
+ type: string;
1881
+ source: string;
1882
+ 'source-layer': string;
1883
+ minzoom: number;
1884
+ filter: (string | (string | number)[])[];
1885
+ layout: {
1886
+ 'text-padding': number;
1887
+ 'text-font': string[];
1888
+ 'text-anchor': string;
1889
+ 'icon-image': string;
1890
+ 'text-field': string;
1891
+ 'text-offset': number[];
1892
+ 'text-size': number;
1893
+ 'text-max-width': number;
1894
+ visibility?: undefined;
1895
+ 'line-cap'?: undefined;
1896
+ 'line-join'?: undefined;
1897
+ 'text-rotation-alignment'?: undefined;
1898
+ 'symbol-placement'?: undefined;
1899
+ 'text-letter-spacing'?: undefined;
1900
+ 'symbol-spacing'?: undefined;
1901
+ 'icon-rotation-alignment'?: undefined;
1902
+ 'icon-size'?: undefined;
1903
+ 'text-transform'?: undefined;
1904
+ };
1905
+ paint: {
1906
+ 'text-halo-blur': number;
1907
+ 'text-color': string;
1908
+ 'text-halo-width': number;
1909
+ 'text-halo-color': string;
1910
+ 'background-color'?: undefined;
1911
+ 'fill-color'?: undefined;
1912
+ 'fill-opacity'?: undefined;
1913
+ 'line-color'?: undefined;
1914
+ 'line-dasharray'?: undefined;
1915
+ 'fill-outline-color'?: undefined;
1916
+ 'fill-antialias'?: undefined;
1917
+ 'line-width'?: undefined;
1918
+ 'fill-translate'?: undefined;
1919
+ 'fill-pattern'?: undefined;
1920
+ 'line-opacity'?: undefined;
1921
+ };
1922
+ metadata?: undefined;
1923
+ maxzoom?: undefined;
1924
+ } | {
1925
+ id: string;
1926
+ type: string;
1927
+ source: string;
1928
+ 'source-layer': string;
1929
+ minzoom: number;
1930
+ filter: (string | (string | (string | number)[])[])[];
1931
+ layout: {
1932
+ 'text-padding': number;
1933
+ 'text-font': string[];
1934
+ 'text-anchor': string;
1935
+ 'icon-image': string;
1936
+ 'text-field': string;
1937
+ 'text-offset': number[];
1938
+ 'text-size': number;
1939
+ 'text-max-width': number;
1940
+ visibility?: undefined;
1941
+ 'line-cap'?: undefined;
1942
+ 'line-join'?: undefined;
1943
+ 'text-rotation-alignment'?: undefined;
1944
+ 'symbol-placement'?: undefined;
1945
+ 'text-letter-spacing'?: undefined;
1946
+ 'symbol-spacing'?: undefined;
1947
+ 'icon-rotation-alignment'?: undefined;
1948
+ 'icon-size'?: undefined;
1949
+ 'text-transform'?: undefined;
1950
+ };
1951
+ paint: {
1952
+ 'text-halo-blur': number;
1953
+ 'text-color': string;
1954
+ 'text-halo-width': number;
1955
+ 'text-halo-color': string;
1956
+ 'background-color'?: undefined;
1957
+ 'fill-color'?: undefined;
1958
+ 'fill-opacity'?: undefined;
1959
+ 'line-color'?: undefined;
1960
+ 'line-dasharray'?: undefined;
1961
+ 'fill-outline-color'?: undefined;
1962
+ 'fill-antialias'?: undefined;
1963
+ 'line-width'?: undefined;
1964
+ 'fill-translate'?: undefined;
1965
+ 'fill-pattern'?: undefined;
1966
+ 'line-opacity'?: undefined;
1967
+ };
1968
+ metadata?: undefined;
1969
+ maxzoom?: undefined;
1970
+ } | {
1971
+ id: string;
1972
+ type: string;
1973
+ source: string;
1974
+ 'source-layer': string;
1975
+ minzoom: number;
1976
+ filter: (string | string[])[];
1977
+ layout: {
1978
+ 'text-size': {
1979
+ base: number;
1980
+ stops: number[][];
1981
+ };
1982
+ 'text-font': string[];
1983
+ 'text-field': string;
1984
+ 'symbol-placement': string;
1985
+ 'text-rotation-alignment': string;
1986
+ visibility?: undefined;
1987
+ 'line-cap'?: undefined;
1988
+ 'line-join'?: undefined;
1989
+ 'text-max-width'?: undefined;
1990
+ 'text-letter-spacing'?: undefined;
1991
+ 'symbol-spacing'?: undefined;
1992
+ 'text-padding'?: undefined;
1993
+ 'text-anchor'?: undefined;
1994
+ 'icon-image'?: undefined;
1995
+ 'text-offset'?: undefined;
1996
+ 'icon-rotation-alignment'?: undefined;
1997
+ 'icon-size'?: undefined;
1998
+ 'text-transform'?: undefined;
1999
+ };
2000
+ paint: {
2001
+ 'text-halo-color': string;
2002
+ 'text-color': string;
2003
+ 'text-halo-width': number;
2004
+ 'background-color'?: undefined;
2005
+ 'fill-color'?: undefined;
2006
+ 'fill-opacity'?: undefined;
2007
+ 'line-color'?: undefined;
2008
+ 'line-dasharray'?: undefined;
2009
+ 'fill-outline-color'?: undefined;
2010
+ 'fill-antialias'?: undefined;
2011
+ 'line-width'?: undefined;
2012
+ 'fill-translate'?: undefined;
2013
+ 'fill-pattern'?: undefined;
2014
+ 'line-opacity'?: undefined;
2015
+ 'text-halo-blur'?: undefined;
2016
+ };
2017
+ metadata?: undefined;
2018
+ maxzoom?: undefined;
2019
+ } | {
2020
+ id: string;
2021
+ type: string;
2022
+ source: string;
2023
+ 'source-layer': string;
2024
+ minzoom: number;
2025
+ filter: (string | string[])[];
2026
+ layout: {
2027
+ 'text-size': {
2028
+ base: number;
2029
+ stops: number[][];
2030
+ };
2031
+ 'text-font': string[];
2032
+ 'text-field': string;
2033
+ 'symbol-placement': string;
2034
+ 'text-rotation-alignment': string;
2035
+ visibility?: undefined;
2036
+ 'line-cap'?: undefined;
2037
+ 'line-join'?: undefined;
2038
+ 'text-max-width'?: undefined;
2039
+ 'text-letter-spacing'?: undefined;
2040
+ 'symbol-spacing'?: undefined;
2041
+ 'text-padding'?: undefined;
2042
+ 'text-anchor'?: undefined;
2043
+ 'icon-image'?: undefined;
2044
+ 'text-offset'?: undefined;
2045
+ 'icon-rotation-alignment'?: undefined;
2046
+ 'icon-size'?: undefined;
2047
+ 'text-transform'?: undefined;
2048
+ };
2049
+ paint: {
2050
+ 'text-halo-blur': number;
2051
+ 'text-color': string;
2052
+ 'text-halo-width': number;
2053
+ 'background-color'?: undefined;
2054
+ 'fill-color'?: undefined;
2055
+ 'fill-opacity'?: undefined;
2056
+ 'line-color'?: undefined;
2057
+ 'line-dasharray'?: undefined;
2058
+ 'fill-outline-color'?: undefined;
2059
+ 'fill-antialias'?: undefined;
2060
+ 'line-width'?: undefined;
2061
+ 'fill-translate'?: undefined;
2062
+ 'fill-pattern'?: undefined;
2063
+ 'line-opacity'?: undefined;
2064
+ 'text-halo-color'?: undefined;
2065
+ };
2066
+ metadata?: undefined;
2067
+ maxzoom?: undefined;
2068
+ } | {
2069
+ id: string;
2070
+ type: string;
2071
+ source: string;
2072
+ 'source-layer': string;
2073
+ minzoom: number;
2074
+ filter: (string | (string | number)[])[];
2075
+ layout: {
2076
+ 'text-size': number;
2077
+ 'icon-image': string;
2078
+ 'icon-rotation-alignment': string;
2079
+ 'symbol-spacing': number;
2080
+ 'text-font': string[];
2081
+ 'symbol-placement': {
2082
+ base: number;
2083
+ stops: (string | number)[][];
2084
+ };
2085
+ 'text-rotation-alignment': string;
2086
+ 'icon-size': number;
2087
+ 'text-field': string;
2088
+ visibility?: undefined;
2089
+ 'line-cap'?: undefined;
2090
+ 'line-join'?: undefined;
2091
+ 'text-max-width'?: undefined;
2092
+ 'text-letter-spacing'?: undefined;
2093
+ 'text-padding'?: undefined;
2094
+ 'text-anchor'?: undefined;
2095
+ 'text-offset'?: undefined;
2096
+ 'text-transform'?: undefined;
2097
+ };
2098
+ paint: {
2099
+ 'background-color'?: undefined;
2100
+ 'fill-color'?: undefined;
2101
+ 'fill-opacity'?: undefined;
2102
+ 'line-color'?: undefined;
2103
+ 'line-dasharray'?: undefined;
2104
+ 'fill-outline-color'?: undefined;
2105
+ 'fill-antialias'?: undefined;
2106
+ 'line-width'?: undefined;
2107
+ 'fill-translate'?: undefined;
2108
+ 'fill-pattern'?: undefined;
2109
+ 'line-opacity'?: undefined;
2110
+ 'text-color'?: undefined;
2111
+ 'text-halo-width'?: undefined;
2112
+ 'text-halo-color'?: undefined;
2113
+ 'text-halo-blur'?: undefined;
2114
+ };
2115
+ metadata?: undefined;
2116
+ maxzoom?: undefined;
2117
+ } | {
2118
+ id: string;
2119
+ type: string;
2120
+ source: string;
2121
+ 'source-layer': string;
2122
+ minzoom: number;
2123
+ filter: (string | (string | number)[])[];
2124
+ layout: {
2125
+ 'text-size': number;
2126
+ 'icon-image': string;
2127
+ 'icon-rotation-alignment': string;
2128
+ 'symbol-spacing': number;
2129
+ 'text-font': string[];
2130
+ 'symbol-placement': {
2131
+ base: number;
2132
+ stops: (string | number)[][];
2133
+ };
2134
+ 'text-rotation-alignment': string;
2135
+ 'icon-size': number;
2136
+ 'text-field': string;
2137
+ visibility?: undefined;
2138
+ 'line-cap'?: undefined;
2139
+ 'line-join'?: undefined;
2140
+ 'text-max-width'?: undefined;
2141
+ 'text-letter-spacing'?: undefined;
2142
+ 'text-padding'?: undefined;
2143
+ 'text-anchor'?: undefined;
2144
+ 'text-offset'?: undefined;
2145
+ 'text-transform'?: undefined;
2146
+ };
2147
+ paint: {
2148
+ 'text-color': string;
2149
+ 'background-color'?: undefined;
2150
+ 'fill-color'?: undefined;
2151
+ 'fill-opacity'?: undefined;
2152
+ 'line-color'?: undefined;
2153
+ 'line-dasharray'?: undefined;
2154
+ 'fill-outline-color'?: undefined;
2155
+ 'fill-antialias'?: undefined;
2156
+ 'line-width'?: undefined;
2157
+ 'fill-translate'?: undefined;
2158
+ 'fill-pattern'?: undefined;
2159
+ 'line-opacity'?: undefined;
2160
+ 'text-halo-width'?: undefined;
2161
+ 'text-halo-color'?: undefined;
2162
+ 'text-halo-blur'?: undefined;
2163
+ };
2164
+ metadata?: undefined;
2165
+ maxzoom?: undefined;
2166
+ } | {
2167
+ id: string;
2168
+ type: string;
2169
+ metadata: {
2170
+ 'mapbox:group': string;
2171
+ };
2172
+ source: string;
2173
+ 'source-layer': string;
2174
+ filter: (string | string[])[];
2175
+ layout: {
2176
+ 'text-letter-spacing': number;
2177
+ 'text-size': {
2178
+ base: number;
2179
+ stops: number[][];
2180
+ };
2181
+ 'text-font': string[];
2182
+ 'text-field': string;
2183
+ 'text-transform': string;
2184
+ 'text-max-width': number;
2185
+ visibility?: undefined;
2186
+ 'line-cap'?: undefined;
2187
+ 'line-join'?: undefined;
2188
+ 'text-rotation-alignment'?: undefined;
2189
+ 'symbol-placement'?: undefined;
2190
+ 'symbol-spacing'?: undefined;
2191
+ 'text-padding'?: undefined;
2192
+ 'text-anchor'?: undefined;
2193
+ 'icon-image'?: undefined;
2194
+ 'text-offset'?: undefined;
2195
+ 'icon-rotation-alignment'?: undefined;
2196
+ 'icon-size'?: undefined;
2197
+ };
2198
+ paint: {
2199
+ 'text-color': string;
2200
+ 'text-halo-width': number;
2201
+ 'text-halo-color': string;
2202
+ 'background-color'?: undefined;
2203
+ 'fill-color'?: undefined;
2204
+ 'fill-opacity'?: undefined;
2205
+ 'line-color'?: undefined;
2206
+ 'line-dasharray'?: undefined;
2207
+ 'fill-outline-color'?: undefined;
2208
+ 'fill-antialias'?: undefined;
2209
+ 'line-width'?: undefined;
2210
+ 'fill-translate'?: undefined;
2211
+ 'fill-pattern'?: undefined;
2212
+ 'line-opacity'?: undefined;
2213
+ 'text-halo-blur'?: undefined;
2214
+ };
2215
+ maxzoom?: undefined;
2216
+ minzoom?: undefined;
2217
+ } | {
2218
+ id: string;
2219
+ type: string;
2220
+ metadata: {
2221
+ 'mapbox:group': string;
2222
+ };
2223
+ source: string;
2224
+ 'source-layer': string;
2225
+ filter: (string | (string | number)[])[];
2226
+ layout: {
2227
+ 'text-font': string[];
2228
+ 'text-size': {
2229
+ base: number;
2230
+ stops: number[][];
2231
+ };
2232
+ 'text-field': string;
2233
+ 'text-max-width': number;
2234
+ visibility?: undefined;
2235
+ 'line-cap'?: undefined;
2236
+ 'line-join'?: undefined;
2237
+ 'text-rotation-alignment'?: undefined;
2238
+ 'symbol-placement'?: undefined;
2239
+ 'text-letter-spacing'?: undefined;
2240
+ 'symbol-spacing'?: undefined;
2241
+ 'text-padding'?: undefined;
2242
+ 'text-anchor'?: undefined;
2243
+ 'icon-image'?: undefined;
2244
+ 'text-offset'?: undefined;
2245
+ 'icon-rotation-alignment'?: undefined;
2246
+ 'icon-size'?: undefined;
2247
+ 'text-transform'?: undefined;
2248
+ };
2249
+ paint: {
2250
+ 'text-color': string;
2251
+ 'text-halo-width': number;
2252
+ 'text-halo-color': string;
2253
+ 'background-color'?: undefined;
2254
+ 'fill-color'?: undefined;
2255
+ 'fill-opacity'?: undefined;
2256
+ 'line-color'?: undefined;
2257
+ 'line-dasharray'?: undefined;
2258
+ 'fill-outline-color'?: undefined;
2259
+ 'fill-antialias'?: undefined;
2260
+ 'line-width'?: undefined;
2261
+ 'fill-translate'?: undefined;
2262
+ 'fill-pattern'?: undefined;
2263
+ 'line-opacity'?: undefined;
2264
+ 'text-halo-blur'?: undefined;
2265
+ };
2266
+ maxzoom?: undefined;
2267
+ minzoom?: undefined;
2268
+ } | {
2269
+ id: string;
2270
+ type: string;
2271
+ metadata: {
2272
+ 'mapbox:group': string;
2273
+ };
2274
+ source: string;
2275
+ 'source-layer': string;
2276
+ filter: (string | (string | number)[])[];
2277
+ layout: {
2278
+ 'text-font': string[];
2279
+ 'text-size': {
2280
+ base: number;
2281
+ stops: number[][];
2282
+ };
2283
+ 'text-field': string;
2284
+ 'text-max-width': number;
2285
+ 'icon-image': string;
2286
+ 'text-offset': number[];
2287
+ 'icon-size': number;
2288
+ 'text-anchor': string;
2289
+ visibility?: undefined;
2290
+ 'line-cap'?: undefined;
2291
+ 'line-join'?: undefined;
2292
+ 'text-rotation-alignment'?: undefined;
2293
+ 'symbol-placement'?: undefined;
2294
+ 'text-letter-spacing'?: undefined;
2295
+ 'symbol-spacing'?: undefined;
2296
+ 'text-padding'?: undefined;
2297
+ 'icon-rotation-alignment'?: undefined;
2298
+ 'text-transform'?: undefined;
2299
+ };
2300
+ paint: {
2301
+ 'text-color': string;
2302
+ 'text-halo-width': number;
2303
+ 'text-halo-color': string;
2304
+ 'background-color'?: undefined;
2305
+ 'fill-color'?: undefined;
2306
+ 'fill-opacity'?: undefined;
2307
+ 'line-color'?: undefined;
2308
+ 'line-dasharray'?: undefined;
2309
+ 'fill-outline-color'?: undefined;
2310
+ 'fill-antialias'?: undefined;
2311
+ 'line-width'?: undefined;
2312
+ 'fill-translate'?: undefined;
2313
+ 'fill-pattern'?: undefined;
2314
+ 'line-opacity'?: undefined;
2315
+ 'text-halo-blur'?: undefined;
2316
+ };
2317
+ maxzoom?: undefined;
2318
+ minzoom?: undefined;
2319
+ } | {
2320
+ id: string;
2321
+ type: string;
2322
+ metadata: {
2323
+ 'mapbox:group': string;
2324
+ };
2325
+ source: string;
2326
+ 'source-layer': string;
2327
+ filter: (string | (string | number)[])[];
2328
+ layout: {
2329
+ 'text-font': string[];
2330
+ 'text-field': string;
2331
+ 'text-size': {
2332
+ stops: number[][];
2333
+ base?: undefined;
2334
+ };
2335
+ 'text-transform': string;
2336
+ 'text-max-width': number;
2337
+ visibility?: undefined;
2338
+ 'line-cap'?: undefined;
2339
+ 'line-join'?: undefined;
2340
+ 'text-rotation-alignment'?: undefined;
2341
+ 'symbol-placement'?: undefined;
2342
+ 'text-letter-spacing'?: undefined;
2343
+ 'symbol-spacing'?: undefined;
2344
+ 'text-padding'?: undefined;
2345
+ 'text-anchor'?: undefined;
2346
+ 'icon-image'?: undefined;
2347
+ 'text-offset'?: undefined;
2348
+ 'icon-rotation-alignment'?: undefined;
2349
+ 'icon-size'?: undefined;
2350
+ };
2351
+ paint: {
2352
+ 'text-halo-blur': number;
2353
+ 'text-color': string;
2354
+ 'text-halo-width': number;
2355
+ 'text-halo-color': string;
2356
+ 'background-color'?: undefined;
2357
+ 'fill-color'?: undefined;
2358
+ 'fill-opacity'?: undefined;
2359
+ 'line-color'?: undefined;
2360
+ 'line-dasharray'?: undefined;
2361
+ 'fill-outline-color'?: undefined;
2362
+ 'fill-antialias'?: undefined;
2363
+ 'line-width'?: undefined;
2364
+ 'fill-translate'?: undefined;
2365
+ 'fill-pattern'?: undefined;
2366
+ 'line-opacity'?: undefined;
2367
+ };
2368
+ maxzoom?: undefined;
2369
+ minzoom?: undefined;
2370
+ } | {
2371
+ id: string;
2372
+ type: string;
2373
+ metadata: {
2374
+ 'mapbox:group': string;
2375
+ };
2376
+ source: string;
2377
+ 'source-layer': string;
2378
+ maxzoom: number;
2379
+ filter: (string | string[])[];
2380
+ layout: {
2381
+ 'text-font': string[];
2382
+ 'text-field': string;
2383
+ 'text-size': number;
2384
+ 'text-max-width': number;
2385
+ 'text-transform': string;
2386
+ visibility?: undefined;
2387
+ 'line-cap'?: undefined;
2388
+ 'line-join'?: undefined;
2389
+ 'text-rotation-alignment'?: undefined;
2390
+ 'symbol-placement'?: undefined;
2391
+ 'text-letter-spacing'?: undefined;
2392
+ 'symbol-spacing'?: undefined;
2393
+ 'text-padding'?: undefined;
2394
+ 'text-anchor'?: undefined;
2395
+ 'icon-image'?: undefined;
2396
+ 'text-offset'?: undefined;
2397
+ 'icon-rotation-alignment'?: undefined;
2398
+ 'icon-size'?: undefined;
2399
+ };
2400
+ paint: {
2401
+ 'text-halo-blur': number;
2402
+ 'text-color': string;
2403
+ 'text-halo-width': number;
2404
+ 'text-halo-color': string;
2405
+ 'background-color'?: undefined;
2406
+ 'fill-color'?: undefined;
2407
+ 'fill-opacity'?: undefined;
2408
+ 'line-color'?: undefined;
2409
+ 'line-dasharray'?: undefined;
2410
+ 'fill-outline-color'?: undefined;
2411
+ 'fill-antialias'?: undefined;
2412
+ 'line-width'?: undefined;
2413
+ 'fill-translate'?: undefined;
2414
+ 'fill-pattern'?: undefined;
2415
+ 'line-opacity'?: undefined;
2416
+ };
2417
+ minzoom?: undefined;
2418
+ })[];
2419
+ };
2420
+ export default _default;