@mcp-b/geo-maplibre 0.2.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.
Files changed (39) hide show
  1. package/LICENSE +21 -0
  2. package/dist/circle-CFH3gDcY.js +146 -0
  3. package/dist/components/circle/circle.d.ts +51 -0
  4. package/dist/components/circle/circle.js +2 -0
  5. package/dist/components/control/control.d.ts +42 -0
  6. package/dist/components/control/control.js +2 -0
  7. package/dist/components/geojson/geojson.d.ts +74 -0
  8. package/dist/components/geojson/geojson.js +2 -0
  9. package/dist/components/layer/layer.d.ts +35 -0
  10. package/dist/components/layer/layer.js +2 -0
  11. package/dist/components/map/map.d.ts +43 -0
  12. package/dist/components/map/map.js +2 -0
  13. package/dist/components/marker/marker.d.ts +42 -0
  14. package/dist/components/marker/marker.js +2 -0
  15. package/dist/components/polygon/polygon.d.ts +46 -0
  16. package/dist/components/polygon/polygon.js +2 -0
  17. package/dist/components/polyline/polyline.d.ts +44 -0
  18. package/dist/components/polyline/polyline.js +2 -0
  19. package/dist/components/popup/popup.d.ts +27 -0
  20. package/dist/components/popup/popup.js +2 -0
  21. package/dist/components/scale-control/scale-control.d.ts +33 -0
  22. package/dist/components/scale-control/scale-control.js +2 -0
  23. package/dist/components/tilelayer/tilelayer.d.ts +65 -0
  24. package/dist/components/tilelayer/tilelayer.js +2 -0
  25. package/dist/control-Bka68vGo.js +61 -0
  26. package/dist/decorate-DcF3lt7P.js +9 -0
  27. package/dist/docs/custom-elements.json +1596 -0
  28. package/dist/geojson-BW9JQxtv.js +240 -0
  29. package/dist/index.d.ts +12 -0
  30. package/dist/index.js +12 -0
  31. package/dist/layer-COvBRP1h.js +61 -0
  32. package/dist/map-CYqh-osb.js +135 -0
  33. package/dist/marker-DzWveHNW.js +79 -0
  34. package/dist/polygon-BJ-z1X7p.js +119 -0
  35. package/dist/polyline-Dt4yBInz.js +98 -0
  36. package/dist/popup-BNRD9rNd.js +30 -0
  37. package/dist/scale-control-DPWq0EHU.js +58 -0
  38. package/dist/tilelayer-CCmClbSv.js +85 -0
  39. package/package.json +75 -0
@@ -0,0 +1,1596 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/components/circle/circle.ts",
8
+ "declarations": [
9
+ {
10
+ "kind": "class",
11
+ "description": "A circle overlay on a MapLibre map, rendered as a GeoJSON polygon\napproximation. Must be a child of `<sigvelo-maplibre-map>`.",
12
+ "name": "SigveloMaplibreCircle",
13
+ "members": [
14
+ {
15
+ "kind": "method",
16
+ "name": "_addCircle",
17
+ "privacy": "private"
18
+ },
19
+ {
20
+ "kind": "method",
21
+ "name": "_buildGeoJSON",
22
+ "privacy": "private"
23
+ },
24
+ {
25
+ "kind": "field",
26
+ "name": "_fillLayerId",
27
+ "default": "`sigvelo-circle-fill-${id}`"
28
+ },
29
+ {
30
+ "kind": "method",
31
+ "name": "_removeCircle",
32
+ "privacy": "private"
33
+ },
34
+ {
35
+ "kind": "field",
36
+ "name": "_sourceId",
37
+ "default": "`sigvelo-circle-source-${id}`"
38
+ },
39
+ {
40
+ "kind": "field",
41
+ "name": "_strokeLayerId",
42
+ "default": "`sigvelo-circle-stroke-${id}`"
43
+ },
44
+ {
45
+ "kind": "method",
46
+ "name": "_updateSource",
47
+ "privacy": "private"
48
+ },
49
+ {
50
+ "kind": "field",
51
+ "name": "fillColor",
52
+ "type": {
53
+ "text": "string"
54
+ },
55
+ "default": "\"#3388ff\"",
56
+ "description": "Fill color (CSS color string).",
57
+ "attribute": "fill-color"
58
+ },
59
+ {
60
+ "kind": "field",
61
+ "name": "fillOpacity",
62
+ "type": {
63
+ "text": "number"
64
+ },
65
+ "default": "0.2",
66
+ "description": "Fill opacity (0-1).",
67
+ "attribute": "fill-opacity"
68
+ },
69
+ {
70
+ "kind": "field",
71
+ "name": "latitude",
72
+ "type": {
73
+ "text": "number"
74
+ },
75
+ "default": "0",
76
+ "description": "Center latitude.",
77
+ "attribute": "latitude"
78
+ },
79
+ {
80
+ "kind": "field",
81
+ "name": "longitude",
82
+ "type": {
83
+ "text": "number"
84
+ },
85
+ "default": "0",
86
+ "description": "Center longitude.",
87
+ "attribute": "longitude"
88
+ },
89
+ {
90
+ "kind": "field",
91
+ "name": "radius",
92
+ "type": {
93
+ "text": "number"
94
+ },
95
+ "default": "100",
96
+ "description": "Radius in meters.",
97
+ "attribute": "radius"
98
+ },
99
+ {
100
+ "kind": "field",
101
+ "name": "strokeColor",
102
+ "type": {
103
+ "text": "string"
104
+ },
105
+ "default": "\"#3388ff\"",
106
+ "description": "Stroke color (CSS color string).",
107
+ "attribute": "stroke-color"
108
+ },
109
+ {
110
+ "kind": "field",
111
+ "name": "strokeWidth",
112
+ "type": {
113
+ "text": "number"
114
+ },
115
+ "default": "2",
116
+ "description": "Stroke width in pixels.",
117
+ "attribute": "stroke-width"
118
+ }
119
+ ],
120
+ "attributes": [
121
+ {
122
+ "name": "fill-color",
123
+ "type": {
124
+ "text": "string"
125
+ },
126
+ "default": "\"#3388ff\"",
127
+ "description": "Fill color (CSS color string).",
128
+ "fieldName": "fillColor"
129
+ },
130
+ {
131
+ "name": "fill-opacity",
132
+ "type": {
133
+ "text": "number"
134
+ },
135
+ "default": "0.2",
136
+ "description": "Fill opacity (0-1).",
137
+ "fieldName": "fillOpacity"
138
+ },
139
+ {
140
+ "name": "latitude",
141
+ "type": {
142
+ "text": "number"
143
+ },
144
+ "default": "0",
145
+ "description": "Center latitude.",
146
+ "fieldName": "latitude"
147
+ },
148
+ {
149
+ "name": "longitude",
150
+ "type": {
151
+ "text": "number"
152
+ },
153
+ "default": "0",
154
+ "description": "Center longitude.",
155
+ "fieldName": "longitude"
156
+ },
157
+ {
158
+ "name": "radius",
159
+ "type": {
160
+ "text": "number"
161
+ },
162
+ "default": "100",
163
+ "description": "Radius in meters.",
164
+ "fieldName": "radius"
165
+ },
166
+ {
167
+ "name": "stroke-color",
168
+ "type": {
169
+ "text": "string"
170
+ },
171
+ "default": "\"#3388ff\"",
172
+ "description": "Stroke color (CSS color string).",
173
+ "fieldName": "strokeColor"
174
+ },
175
+ {
176
+ "name": "stroke-width",
177
+ "type": {
178
+ "text": "number"
179
+ },
180
+ "default": "2",
181
+ "description": "Stroke width in pixels.",
182
+ "fieldName": "strokeWidth"
183
+ }
184
+ ],
185
+ "superclass": {
186
+ "name": "LitElement",
187
+ "package": "lit"
188
+ },
189
+ "tagName": "sigvelo-maplibre-circle",
190
+ "customElement": true,
191
+ "modulePath": "src/components/circle/circle.ts",
192
+ "definitionPath": "src/components/circle/circle.ts"
193
+ }
194
+ ],
195
+ "exports": [
196
+ {
197
+ "kind": "custom-element-definition",
198
+ "name": "sigvelo-maplibre-circle",
199
+ "declaration": {
200
+ "name": "SigveloMaplibreCircle",
201
+ "module": "src/components/circle/circle.ts"
202
+ }
203
+ },
204
+ {
205
+ "kind": "js",
206
+ "name": "SigveloMaplibreCircle",
207
+ "declaration": {
208
+ "name": "SigveloMaplibreCircle",
209
+ "module": "src/components/circle/circle.ts"
210
+ }
211
+ }
212
+ ]
213
+ },
214
+ {
215
+ "kind": "javascript-module",
216
+ "path": "src/components/control/control.ts",
217
+ "declarations": [
218
+ {
219
+ "kind": "class",
220
+ "description": "A generic control container for a MapLibre map. Wraps arbitrary content\nand places it in one of MapLibre's four control corners, stacking properly\nwith navigation, attribution, and other controls.",
221
+ "name": "SigveloMaplibreControl",
222
+ "members": [
223
+ {
224
+ "kind": "field",
225
+ "name": "position",
226
+ "type": {
227
+ "text": "ControlPosition"
228
+ },
229
+ "default": "\"bottom-left\"",
230
+ "description": "Position of the control on the map.",
231
+ "attribute": "position",
232
+ "parsedType": {
233
+ "text": "'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'"
234
+ }
235
+ }
236
+ ],
237
+ "attributes": [
238
+ {
239
+ "name": "position",
240
+ "type": {
241
+ "text": "ControlPosition"
242
+ },
243
+ "default": "\"bottom-left\"",
244
+ "description": "Position of the control on the map.",
245
+ "fieldName": "position",
246
+ "parsedType": {
247
+ "text": "'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'"
248
+ }
249
+ }
250
+ ],
251
+ "superclass": {
252
+ "name": "LitElement",
253
+ "package": "lit"
254
+ },
255
+ "tagName": "sigvelo-maplibre-control",
256
+ "customElement": true,
257
+ "modulePath": "src/components/control/control.ts",
258
+ "definitionPath": "src/components/control/control.ts"
259
+ }
260
+ ],
261
+ "exports": [
262
+ {
263
+ "kind": "custom-element-definition",
264
+ "name": "sigvelo-maplibre-control",
265
+ "declaration": {
266
+ "name": "SigveloMaplibreControl",
267
+ "module": "src/components/control/control.ts"
268
+ }
269
+ },
270
+ {
271
+ "kind": "js",
272
+ "name": "SigveloMaplibreControl",
273
+ "declaration": {
274
+ "name": "SigveloMaplibreControl",
275
+ "module": "src/components/control/control.ts"
276
+ }
277
+ }
278
+ ]
279
+ },
280
+ {
281
+ "kind": "javascript-module",
282
+ "path": "src/components/geojson/geojson.ts",
283
+ "declarations": [
284
+ {
285
+ "kind": "class",
286
+ "description": "Renders GeoJSON data on a MapLibre map as a source + layer.\nMust be a child of `<sigvelo-maplibre-map>`.",
287
+ "name": "SigveloMaplibreGeojson",
288
+ "members": [
289
+ {
290
+ "kind": "method",
291
+ "name": "_addSource",
292
+ "privacy": "private"
293
+ },
294
+ {
295
+ "kind": "field",
296
+ "name": "_circleLayerId",
297
+ "default": "`sigvelo-geojson-circle-${id}`"
298
+ },
299
+ {
300
+ "kind": "field",
301
+ "name": "_fillLayerId",
302
+ "default": "`sigvelo-geojson-fill-${id}`"
303
+ },
304
+ {
305
+ "kind": "field",
306
+ "name": "_lineLayerId",
307
+ "default": "`sigvelo-geojson-line-${id}`"
308
+ },
309
+ {
310
+ "kind": "method",
311
+ "name": "_removeSource",
312
+ "privacy": "private"
313
+ },
314
+ {
315
+ "kind": "field",
316
+ "name": "_sourceId",
317
+ "default": "`sigvelo-geojson-source-${id}`"
318
+ },
319
+ {
320
+ "kind": "field",
321
+ "name": "channel",
322
+ "type": {
323
+ "text": "string"
324
+ },
325
+ "default": "\"\"",
326
+ "description": "Channel name for auto-syncing with a classify panel.",
327
+ "attribute": "channel"
328
+ },
329
+ {
330
+ "kind": "field",
331
+ "name": "circleRadius",
332
+ "type": {
333
+ "text": "number"
334
+ },
335
+ "default": "6",
336
+ "description": "Circle radius for point features (in pixels).",
337
+ "attribute": "circle-radius"
338
+ },
339
+ {
340
+ "kind": "field",
341
+ "name": "data",
342
+ "type": {
343
+ "text": "GeoJsonData | null"
344
+ },
345
+ "default": "null",
346
+ "description": "GeoJSON data. Set via property."
347
+ },
348
+ {
349
+ "kind": "field",
350
+ "name": "fillColor",
351
+ "type": {
352
+ "text": "string"
353
+ },
354
+ "default": "\"#3388ff\"",
355
+ "description": "Fill color for polygon features.",
356
+ "attribute": "fill-color"
357
+ },
358
+ {
359
+ "kind": "field",
360
+ "name": "fillOpacity",
361
+ "type": {
362
+ "text": "number"
363
+ },
364
+ "default": "0.2",
365
+ "description": "Fill opacity (0-1).",
366
+ "attribute": "fill-opacity"
367
+ },
368
+ {
369
+ "kind": "field",
370
+ "name": "interactive",
371
+ "type": {
372
+ "text": "boolean"
373
+ },
374
+ "default": "true",
375
+ "description": "Whether features respond to click events.",
376
+ "attribute": "interactive"
377
+ },
378
+ {
379
+ "kind": "field",
380
+ "name": "strokeColor",
381
+ "type": {
382
+ "text": "string"
383
+ },
384
+ "default": "\"#3388ff\"",
385
+ "description": "Stroke/line color.",
386
+ "attribute": "stroke-color"
387
+ },
388
+ {
389
+ "kind": "field",
390
+ "name": "strokeWidth",
391
+ "type": {
392
+ "text": "number"
393
+ },
394
+ "default": "2",
395
+ "description": "Stroke/line width in pixels.",
396
+ "attribute": "stroke-width"
397
+ },
398
+ {
399
+ "kind": "field",
400
+ "name": "styleFunction",
401
+ "type": {
402
+ "text": "StyleFunction | null"
403
+ },
404
+ "default": "null",
405
+ "description": "Per-feature style function for choropleth / thematic maps.\nWhen set, styles are pre-computed into feature properties and rendered\nvia MapLibre data-driven expressions."
406
+ }
407
+ ],
408
+ "events": [
409
+ {
410
+ "description": "Fired when a GeoJSON feature is clicked.",
411
+ "name": "sigvelo-feature-click"
412
+ }
413
+ ],
414
+ "attributes": [
415
+ {
416
+ "name": "channel",
417
+ "type": {
418
+ "text": "string"
419
+ },
420
+ "default": "\"\"",
421
+ "description": "Channel name for auto-syncing with a classify panel.",
422
+ "fieldName": "channel"
423
+ },
424
+ {
425
+ "name": "circle-radius",
426
+ "type": {
427
+ "text": "number"
428
+ },
429
+ "default": "6",
430
+ "description": "Circle radius for point features (in pixels).",
431
+ "fieldName": "circleRadius"
432
+ },
433
+ {
434
+ "name": "fill-color",
435
+ "type": {
436
+ "text": "string"
437
+ },
438
+ "default": "\"#3388ff\"",
439
+ "description": "Fill color for polygon features.",
440
+ "fieldName": "fillColor"
441
+ },
442
+ {
443
+ "name": "fill-opacity",
444
+ "type": {
445
+ "text": "number"
446
+ },
447
+ "default": "0.2",
448
+ "description": "Fill opacity (0-1).",
449
+ "fieldName": "fillOpacity"
450
+ },
451
+ {
452
+ "name": "interactive",
453
+ "type": {
454
+ "text": "boolean"
455
+ },
456
+ "default": "true",
457
+ "description": "Whether features respond to click events.",
458
+ "fieldName": "interactive"
459
+ },
460
+ {
461
+ "name": "stroke-color",
462
+ "type": {
463
+ "text": "string"
464
+ },
465
+ "default": "\"#3388ff\"",
466
+ "description": "Stroke/line color.",
467
+ "fieldName": "strokeColor"
468
+ },
469
+ {
470
+ "name": "stroke-width",
471
+ "type": {
472
+ "text": "number"
473
+ },
474
+ "default": "2",
475
+ "description": "Stroke/line width in pixels.",
476
+ "fieldName": "strokeWidth"
477
+ }
478
+ ],
479
+ "superclass": {
480
+ "name": "LitElement",
481
+ "package": "lit"
482
+ },
483
+ "tagName": "sigvelo-maplibre-geojson",
484
+ "customElement": true,
485
+ "modulePath": "src/components/geojson/geojson.ts",
486
+ "definitionPath": "src/components/geojson/geojson.ts"
487
+ }
488
+ ],
489
+ "exports": [
490
+ {
491
+ "kind": "custom-element-definition",
492
+ "name": "sigvelo-maplibre-geojson",
493
+ "declaration": {
494
+ "name": "SigveloMaplibreGeojson",
495
+ "module": "src/components/geojson/geojson.ts"
496
+ }
497
+ },
498
+ {
499
+ "kind": "js",
500
+ "name": "SigveloMaplibreGeojson",
501
+ "declaration": {
502
+ "name": "SigveloMaplibreGeojson",
503
+ "module": "src/components/geojson/geojson.ts"
504
+ }
505
+ }
506
+ ]
507
+ },
508
+ {
509
+ "kind": "javascript-module",
510
+ "path": "src/components/layer/layer.ts",
511
+ "declarations": [
512
+ {
513
+ "kind": "class",
514
+ "description": "A generic MapLibre style layer. Allows adding custom layers to the map\nusing MapLibre's layer specification. Must be a child of `<sigvelo-maplibre-map>`.",
515
+ "name": "SigveloMaplibreLayer",
516
+ "members": [
517
+ {
518
+ "kind": "method",
519
+ "name": "_addLayer",
520
+ "privacy": "private"
521
+ },
522
+ {
523
+ "kind": "method",
524
+ "name": "_removeLayer",
525
+ "privacy": "private"
526
+ },
527
+ {
528
+ "kind": "field",
529
+ "name": "beforeId",
530
+ "type": {
531
+ "text": "string"
532
+ },
533
+ "default": "\"\"",
534
+ "description": "Insert this layer before the specified layer ID.",
535
+ "attribute": "before-id"
536
+ },
537
+ {
538
+ "kind": "field",
539
+ "name": "spec",
540
+ "type": {
541
+ "text": "maplibregl.LayerSpecification | null"
542
+ },
543
+ "default": "null",
544
+ "description": "The layer specification object. Set via property."
545
+ }
546
+ ],
547
+ "attributes": [
548
+ {
549
+ "name": "before-id",
550
+ "type": {
551
+ "text": "string"
552
+ },
553
+ "default": "\"\"",
554
+ "description": "Insert this layer before the specified layer ID.",
555
+ "fieldName": "beforeId"
556
+ }
557
+ ],
558
+ "superclass": {
559
+ "name": "LitElement",
560
+ "package": "lit"
561
+ },
562
+ "tagName": "sigvelo-maplibre-layer",
563
+ "customElement": true,
564
+ "modulePath": "src/components/layer/layer.ts",
565
+ "definitionPath": "src/components/layer/layer.ts"
566
+ }
567
+ ],
568
+ "exports": [
569
+ {
570
+ "kind": "custom-element-definition",
571
+ "name": "sigvelo-maplibre-layer",
572
+ "declaration": {
573
+ "name": "SigveloMaplibreLayer",
574
+ "module": "src/components/layer/layer.ts"
575
+ }
576
+ },
577
+ {
578
+ "kind": "js",
579
+ "name": "SigveloMaplibreLayer",
580
+ "declaration": {
581
+ "name": "SigveloMaplibreLayer",
582
+ "module": "src/components/layer/layer.ts"
583
+ }
584
+ }
585
+ ]
586
+ },
587
+ {
588
+ "kind": "javascript-module",
589
+ "path": "src/components/map/map.ts",
590
+ "declarations": [
591
+ {
592
+ "kind": "class",
593
+ "description": "A MapLibre GL JS map component. Add a `<sigvelo-maplibre-tilelayer>` child\nto configure the basemap. Other child elements (markers, popups, layers)\nalso register with this map.",
594
+ "name": "SigveloMaplibreMap",
595
+ "members": [
596
+ {
597
+ "kind": "method",
598
+ "name": "createMap",
599
+ "privacy": "protected",
600
+ "parameters": [
601
+ {
602
+ "name": "container",
603
+ "type": {
604
+ "text": "HTMLElement"
605
+ }
606
+ }
607
+ ]
608
+ },
609
+ {
610
+ "kind": "method",
611
+ "name": "destroyMap",
612
+ "privacy": "protected"
613
+ },
614
+ {
615
+ "kind": "method",
616
+ "name": "fitBounds",
617
+ "privacy": "public",
618
+ "parameters": [
619
+ {
620
+ "name": "options",
621
+ "type": {
622
+ "text": "FitBoundsOptions"
623
+ }
624
+ }
625
+ ]
626
+ },
627
+ {
628
+ "kind": "method",
629
+ "name": "flyTo",
630
+ "privacy": "public",
631
+ "parameters": [
632
+ {
633
+ "name": "options",
634
+ "type": {
635
+ "text": "FlyToOptions"
636
+ }
637
+ }
638
+ ]
639
+ },
640
+ {
641
+ "kind": "method",
642
+ "name": "invalidateSize",
643
+ "privacy": "protected"
644
+ },
645
+ {
646
+ "kind": "field",
647
+ "name": "map",
648
+ "type": {
649
+ "text": "maplibregl.Map | null"
650
+ },
651
+ "privacy": "public",
652
+ "description": "Access the underlying MapLibre map instance (after mapReady resolves).",
653
+ "readonly": true
654
+ },
655
+ {
656
+ "kind": "field",
657
+ "name": "navControl",
658
+ "type": {
659
+ "text": "boolean"
660
+ },
661
+ "default": "true",
662
+ "description": "Whether to show navigation controls (zoom + compass).",
663
+ "attribute": "nav-control"
664
+ },
665
+ {
666
+ "kind": "method",
667
+ "name": "updateView",
668
+ "privacy": "protected",
669
+ "parameters": [
670
+ {
671
+ "name": "changed",
672
+ "type": {
673
+ "text": "PropertyValues"
674
+ }
675
+ }
676
+ ]
677
+ }
678
+ ],
679
+ "events": [
680
+ {
681
+ "description": "Fired when the map is clicked.",
682
+ "name": "sigvelo-map-click"
683
+ },
684
+ {
685
+ "description": "Fired when the map finishes loading.",
686
+ "name": "sigvelo-map-load"
687
+ },
688
+ {
689
+ "description": "Fired while the map center is changing.",
690
+ "name": "sigvelo-map-move"
691
+ },
692
+ {
693
+ "description": "Fired when map movement ends.",
694
+ "name": "sigvelo-map-moveend"
695
+ },
696
+ {
697
+ "description": "Fired while the zoom level is changing.",
698
+ "name": "sigvelo-map-zoom"
699
+ },
700
+ {
701
+ "description": "Fired when zooming ends.",
702
+ "name": "sigvelo-map-zoomend"
703
+ }
704
+ ],
705
+ "attributes": [
706
+ {
707
+ "name": "nav-control",
708
+ "type": {
709
+ "text": "boolean"
710
+ },
711
+ "default": "true",
712
+ "description": "Whether to show navigation controls (zoom + compass).",
713
+ "fieldName": "navControl"
714
+ }
715
+ ],
716
+ "superclass": {
717
+ "name": "GeoMapElement",
718
+ "package": "@mcp-b/geo-support/base/geo-map-element"
719
+ },
720
+ "tagName": "sigvelo-maplibre-map",
721
+ "customElement": true,
722
+ "modulePath": "src/components/map/map.ts",
723
+ "definitionPath": "src/components/map/map.ts"
724
+ }
725
+ ],
726
+ "exports": [
727
+ {
728
+ "kind": "custom-element-definition",
729
+ "name": "sigvelo-maplibre-map",
730
+ "declaration": {
731
+ "name": "SigveloMaplibreMap",
732
+ "module": "src/components/map/map.ts"
733
+ }
734
+ },
735
+ {
736
+ "kind": "js",
737
+ "name": "SigveloMaplibreMap",
738
+ "declaration": {
739
+ "name": "SigveloMaplibreMap",
740
+ "module": "src/components/map/map.ts"
741
+ }
742
+ }
743
+ ]
744
+ },
745
+ {
746
+ "kind": "javascript-module",
747
+ "path": "src/components/marker/marker.ts",
748
+ "declarations": [
749
+ {
750
+ "kind": "class",
751
+ "description": "A marker on a MapLibre map. Must be a child of `<sigvelo-maplibre-map>`.\nNest a `<sigvelo-maplibre-popup>` inside for popup content.",
752
+ "name": "SigveloMaplibreMarker",
753
+ "members": [
754
+ {
755
+ "kind": "method",
756
+ "name": "_addMarker",
757
+ "privacy": "private"
758
+ },
759
+ {
760
+ "kind": "field",
761
+ "name": "color",
762
+ "type": {
763
+ "text": "string"
764
+ },
765
+ "default": "\"#3fb1ce\"",
766
+ "description": "Marker color (CSS color string).",
767
+ "attribute": "color"
768
+ },
769
+ {
770
+ "kind": "field",
771
+ "name": "draggable",
772
+ "type": {
773
+ "text": "boolean"
774
+ },
775
+ "default": "false",
776
+ "description": "Whether the marker is draggable.",
777
+ "attribute": "draggable"
778
+ },
779
+ {
780
+ "kind": "field",
781
+ "name": "latitude",
782
+ "type": {
783
+ "text": "number"
784
+ },
785
+ "default": "0",
786
+ "description": "Center latitude.",
787
+ "attribute": "latitude"
788
+ },
789
+ {
790
+ "kind": "field",
791
+ "name": "longitude",
792
+ "type": {
793
+ "text": "number"
794
+ },
795
+ "default": "0",
796
+ "description": "Center longitude.",
797
+ "attribute": "longitude"
798
+ },
799
+ {
800
+ "kind": "field",
801
+ "name": "marker",
802
+ "type": {
803
+ "text": "maplibregl.Marker | null"
804
+ },
805
+ "privacy": "public",
806
+ "description": "Access the underlying MapLibre marker instance.",
807
+ "readonly": true
808
+ },
809
+ {
810
+ "kind": "field",
811
+ "name": "scale",
812
+ "type": {
813
+ "text": "number"
814
+ },
815
+ "default": "1",
816
+ "description": "Scale factor for the default marker.",
817
+ "attribute": "scale"
818
+ }
819
+ ],
820
+ "attributes": [
821
+ {
822
+ "name": "color",
823
+ "type": {
824
+ "text": "string"
825
+ },
826
+ "default": "\"#3fb1ce\"",
827
+ "description": "Marker color (CSS color string).",
828
+ "fieldName": "color"
829
+ },
830
+ {
831
+ "name": "draggable",
832
+ "type": {
833
+ "text": "boolean"
834
+ },
835
+ "default": "false",
836
+ "description": "Whether the marker is draggable.",
837
+ "fieldName": "draggable"
838
+ },
839
+ {
840
+ "name": "latitude",
841
+ "type": {
842
+ "text": "number"
843
+ },
844
+ "default": "0",
845
+ "description": "Center latitude.",
846
+ "fieldName": "latitude"
847
+ },
848
+ {
849
+ "name": "longitude",
850
+ "type": {
851
+ "text": "number"
852
+ },
853
+ "default": "0",
854
+ "description": "Center longitude.",
855
+ "fieldName": "longitude"
856
+ },
857
+ {
858
+ "name": "scale",
859
+ "type": {
860
+ "text": "number"
861
+ },
862
+ "default": "1",
863
+ "description": "Scale factor for the default marker.",
864
+ "fieldName": "scale"
865
+ }
866
+ ],
867
+ "superclass": {
868
+ "name": "LitElement",
869
+ "package": "lit"
870
+ },
871
+ "tagName": "sigvelo-maplibre-marker",
872
+ "customElement": true,
873
+ "modulePath": "src/components/marker/marker.ts",
874
+ "definitionPath": "src/components/marker/marker.ts"
875
+ }
876
+ ],
877
+ "exports": [
878
+ {
879
+ "kind": "custom-element-definition",
880
+ "name": "sigvelo-maplibre-marker",
881
+ "declaration": {
882
+ "name": "SigveloMaplibreMarker",
883
+ "module": "src/components/marker/marker.ts"
884
+ }
885
+ },
886
+ {
887
+ "kind": "js",
888
+ "name": "SigveloMaplibreMarker",
889
+ "declaration": {
890
+ "name": "SigveloMaplibreMarker",
891
+ "module": "src/components/marker/marker.ts"
892
+ }
893
+ }
894
+ ]
895
+ },
896
+ {
897
+ "kind": "javascript-module",
898
+ "path": "src/components/polygon/polygon.ts",
899
+ "declarations": [
900
+ {
901
+ "kind": "class",
902
+ "description": "A polygon overlay on a MapLibre map. Must be a child of\n`<sigvelo-maplibre-map>`.",
903
+ "name": "SigveloMaplibrePolygon",
904
+ "members": [
905
+ {
906
+ "kind": "method",
907
+ "name": "_addPolygon",
908
+ "privacy": "private"
909
+ },
910
+ {
911
+ "kind": "field",
912
+ "name": "_fillLayerId",
913
+ "default": "`sigvelo-polygon-fill-${id}`"
914
+ },
915
+ {
916
+ "kind": "method",
917
+ "name": "_removePolygon",
918
+ "privacy": "private"
919
+ },
920
+ {
921
+ "kind": "field",
922
+ "name": "_sourceId",
923
+ "default": "`sigvelo-polygon-source-${id}`"
924
+ },
925
+ {
926
+ "kind": "field",
927
+ "name": "_strokeLayerId",
928
+ "default": "`sigvelo-polygon-stroke-${id}`"
929
+ },
930
+ {
931
+ "kind": "method",
932
+ "name": "_toGeoJSON",
933
+ "privacy": "private"
934
+ },
935
+ {
936
+ "kind": "field",
937
+ "name": "fillColor",
938
+ "type": {
939
+ "text": "string"
940
+ },
941
+ "default": "\"#3388ff\"",
942
+ "description": "Fill color (CSS color string).",
943
+ "attribute": "fill-color"
944
+ },
945
+ {
946
+ "kind": "field",
947
+ "name": "fillOpacity",
948
+ "type": {
949
+ "text": "number"
950
+ },
951
+ "default": "0.2",
952
+ "description": "Fill opacity (0-1).",
953
+ "attribute": "fill-opacity"
954
+ },
955
+ {
956
+ "kind": "field",
957
+ "name": "positions",
958
+ "type": {
959
+ "text": "Array<[number, number]>"
960
+ },
961
+ "default": "[]",
962
+ "description": "Array of [lat, lng] coordinate pairs forming the polygon. Set via property."
963
+ },
964
+ {
965
+ "kind": "field",
966
+ "name": "strokeColor",
967
+ "type": {
968
+ "text": "string"
969
+ },
970
+ "default": "\"#3388ff\"",
971
+ "description": "Stroke color (CSS color string).",
972
+ "attribute": "stroke-color"
973
+ },
974
+ {
975
+ "kind": "field",
976
+ "name": "strokeWidth",
977
+ "type": {
978
+ "text": "number"
979
+ },
980
+ "default": "2",
981
+ "description": "Stroke width in pixels.",
982
+ "attribute": "stroke-width"
983
+ }
984
+ ],
985
+ "attributes": [
986
+ {
987
+ "name": "fill-color",
988
+ "type": {
989
+ "text": "string"
990
+ },
991
+ "default": "\"#3388ff\"",
992
+ "description": "Fill color (CSS color string).",
993
+ "fieldName": "fillColor"
994
+ },
995
+ {
996
+ "name": "fill-opacity",
997
+ "type": {
998
+ "text": "number"
999
+ },
1000
+ "default": "0.2",
1001
+ "description": "Fill opacity (0-1).",
1002
+ "fieldName": "fillOpacity"
1003
+ },
1004
+ {
1005
+ "name": "stroke-color",
1006
+ "type": {
1007
+ "text": "string"
1008
+ },
1009
+ "default": "\"#3388ff\"",
1010
+ "description": "Stroke color (CSS color string).",
1011
+ "fieldName": "strokeColor"
1012
+ },
1013
+ {
1014
+ "name": "stroke-width",
1015
+ "type": {
1016
+ "text": "number"
1017
+ },
1018
+ "default": "2",
1019
+ "description": "Stroke width in pixels.",
1020
+ "fieldName": "strokeWidth"
1021
+ }
1022
+ ],
1023
+ "superclass": {
1024
+ "name": "LitElement",
1025
+ "package": "lit"
1026
+ },
1027
+ "tagName": "sigvelo-maplibre-polygon",
1028
+ "customElement": true,
1029
+ "modulePath": "src/components/polygon/polygon.ts",
1030
+ "definitionPath": "src/components/polygon/polygon.ts"
1031
+ }
1032
+ ],
1033
+ "exports": [
1034
+ {
1035
+ "kind": "custom-element-definition",
1036
+ "name": "sigvelo-maplibre-polygon",
1037
+ "declaration": {
1038
+ "name": "SigveloMaplibrePolygon",
1039
+ "module": "src/components/polygon/polygon.ts"
1040
+ }
1041
+ },
1042
+ {
1043
+ "kind": "js",
1044
+ "name": "SigveloMaplibrePolygon",
1045
+ "declaration": {
1046
+ "name": "SigveloMaplibrePolygon",
1047
+ "module": "src/components/polygon/polygon.ts"
1048
+ }
1049
+ }
1050
+ ]
1051
+ },
1052
+ {
1053
+ "kind": "javascript-module",
1054
+ "path": "src/components/polyline/polyline.ts",
1055
+ "declarations": [
1056
+ {
1057
+ "kind": "class",
1058
+ "description": "A polyline (line string) on a MapLibre map. Must be a child of\n`<sigvelo-maplibre-map>`.",
1059
+ "name": "SigveloMaplibrePolyline",
1060
+ "members": [
1061
+ {
1062
+ "kind": "method",
1063
+ "name": "_addLine",
1064
+ "privacy": "private"
1065
+ },
1066
+ {
1067
+ "kind": "field",
1068
+ "name": "_layerId",
1069
+ "default": "`sigvelo-line-layer-${id}`"
1070
+ },
1071
+ {
1072
+ "kind": "method",
1073
+ "name": "_removeLine",
1074
+ "privacy": "private"
1075
+ },
1076
+ {
1077
+ "kind": "field",
1078
+ "name": "_sourceId",
1079
+ "default": "`sigvelo-line-source-${id}`"
1080
+ },
1081
+ {
1082
+ "kind": "method",
1083
+ "name": "_toGeoJSON",
1084
+ "privacy": "private"
1085
+ },
1086
+ {
1087
+ "kind": "field",
1088
+ "name": "color",
1089
+ "type": {
1090
+ "text": "string"
1091
+ },
1092
+ "default": "\"#3388ff\"",
1093
+ "description": "Line color (CSS color string).",
1094
+ "attribute": "color"
1095
+ },
1096
+ {
1097
+ "kind": "field",
1098
+ "name": "dashArray",
1099
+ "type": {
1100
+ "text": "number[]"
1101
+ },
1102
+ "default": "[]",
1103
+ "description": "Dash pattern (e.g. [5, 10]). Set via property."
1104
+ },
1105
+ {
1106
+ "kind": "field",
1107
+ "name": "opacity",
1108
+ "type": {
1109
+ "text": "number"
1110
+ },
1111
+ "default": "1",
1112
+ "description": "Opacity (0-1).",
1113
+ "attribute": "opacity"
1114
+ },
1115
+ {
1116
+ "kind": "field",
1117
+ "name": "positions",
1118
+ "type": {
1119
+ "text": "Array<[number, number]>"
1120
+ },
1121
+ "default": "[]",
1122
+ "description": "Array of [lat, lng] coordinate pairs. Set via property."
1123
+ },
1124
+ {
1125
+ "kind": "field",
1126
+ "name": "width",
1127
+ "type": {
1128
+ "text": "number"
1129
+ },
1130
+ "default": "3",
1131
+ "description": "Line width in pixels.",
1132
+ "attribute": "width"
1133
+ }
1134
+ ],
1135
+ "attributes": [
1136
+ {
1137
+ "name": "color",
1138
+ "type": {
1139
+ "text": "string"
1140
+ },
1141
+ "default": "\"#3388ff\"",
1142
+ "description": "Line color (CSS color string).",
1143
+ "fieldName": "color"
1144
+ },
1145
+ {
1146
+ "name": "opacity",
1147
+ "type": {
1148
+ "text": "number"
1149
+ },
1150
+ "default": "1",
1151
+ "description": "Opacity (0-1).",
1152
+ "fieldName": "opacity"
1153
+ },
1154
+ {
1155
+ "name": "width",
1156
+ "type": {
1157
+ "text": "number"
1158
+ },
1159
+ "default": "3",
1160
+ "description": "Line width in pixels.",
1161
+ "fieldName": "width"
1162
+ }
1163
+ ],
1164
+ "superclass": {
1165
+ "name": "LitElement",
1166
+ "package": "lit"
1167
+ },
1168
+ "tagName": "sigvelo-maplibre-polyline",
1169
+ "customElement": true,
1170
+ "modulePath": "src/components/polyline/polyline.ts",
1171
+ "definitionPath": "src/components/polyline/polyline.ts"
1172
+ }
1173
+ ],
1174
+ "exports": [
1175
+ {
1176
+ "kind": "custom-element-definition",
1177
+ "name": "sigvelo-maplibre-polyline",
1178
+ "declaration": {
1179
+ "name": "SigveloMaplibrePolyline",
1180
+ "module": "src/components/polyline/polyline.ts"
1181
+ }
1182
+ },
1183
+ {
1184
+ "kind": "js",
1185
+ "name": "SigveloMaplibrePolyline",
1186
+ "declaration": {
1187
+ "name": "SigveloMaplibrePolyline",
1188
+ "module": "src/components/polyline/polyline.ts"
1189
+ }
1190
+ }
1191
+ ]
1192
+ },
1193
+ {
1194
+ "kind": "javascript-module",
1195
+ "path": "src/components/popup/popup.ts",
1196
+ "declarations": [
1197
+ {
1198
+ "kind": "class",
1199
+ "description": "Popup content for a MapLibre marker. Nest inside a\n`<sigvelo-maplibre-marker>` to attach to a marker.\n\nContent is provided via the default slot (Light DOM) so Sigvelo design\ntokens and components render correctly.",
1200
+ "name": "SigveloMaplibrePopup",
1201
+ "slots": [
1202
+ {
1203
+ "description": "Popup content.",
1204
+ "name": ""
1205
+ }
1206
+ ],
1207
+ "members": [
1208
+ {
1209
+ "kind": "field",
1210
+ "name": "maxWidth",
1211
+ "type": {
1212
+ "text": "number"
1213
+ },
1214
+ "default": "300",
1215
+ "description": "Maximum width of the popup in pixels.",
1216
+ "attribute": "max-width"
1217
+ }
1218
+ ],
1219
+ "attributes": [
1220
+ {
1221
+ "name": "max-width",
1222
+ "type": {
1223
+ "text": "number"
1224
+ },
1225
+ "default": "300",
1226
+ "description": "Maximum width of the popup in pixels.",
1227
+ "fieldName": "maxWidth"
1228
+ }
1229
+ ],
1230
+ "superclass": {
1231
+ "name": "LitElement",
1232
+ "package": "lit"
1233
+ },
1234
+ "tagName": "sigvelo-maplibre-popup",
1235
+ "customElement": true,
1236
+ "modulePath": "src/components/popup/popup.ts",
1237
+ "definitionPath": "src/components/popup/popup.ts"
1238
+ }
1239
+ ],
1240
+ "exports": [
1241
+ {
1242
+ "kind": "custom-element-definition",
1243
+ "name": "sigvelo-maplibre-popup",
1244
+ "declaration": {
1245
+ "name": "SigveloMaplibrePopup",
1246
+ "module": "src/components/popup/popup.ts"
1247
+ }
1248
+ },
1249
+ {
1250
+ "kind": "js",
1251
+ "name": "SigveloMaplibrePopup",
1252
+ "declaration": {
1253
+ "name": "SigveloMaplibrePopup",
1254
+ "module": "src/components/popup/popup.ts"
1255
+ }
1256
+ }
1257
+ ]
1258
+ },
1259
+ {
1260
+ "kind": "javascript-module",
1261
+ "path": "src/components/scale-control/scale-control.ts",
1262
+ "declarations": [
1263
+ {
1264
+ "kind": "class",
1265
+ "description": "A scale control for a MapLibre map. Must be a child of `<sigvelo-maplibre-map>`.",
1266
+ "name": "SigveloMaplibreScaleControl",
1267
+ "members": [
1268
+ {
1269
+ "kind": "method",
1270
+ "name": "_addControl",
1271
+ "privacy": "private"
1272
+ },
1273
+ {
1274
+ "kind": "field",
1275
+ "name": "maxWidth",
1276
+ "type": {
1277
+ "text": "number"
1278
+ },
1279
+ "default": "100",
1280
+ "description": "Maximum width of the scale bar in pixels.",
1281
+ "attribute": "max-width"
1282
+ },
1283
+ {
1284
+ "kind": "field",
1285
+ "name": "position",
1286
+ "type": {
1287
+ "text": "\"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\""
1288
+ },
1289
+ "default": "\"bottom-left\"",
1290
+ "description": "Position of the control on the map.",
1291
+ "attribute": "position"
1292
+ },
1293
+ {
1294
+ "kind": "field",
1295
+ "name": "unit",
1296
+ "type": {
1297
+ "text": "\"imperial\" | \"metric\" | \"nautical\""
1298
+ },
1299
+ "default": "\"metric\"",
1300
+ "description": "Unit system for the scale bar.",
1301
+ "attribute": "unit"
1302
+ }
1303
+ ],
1304
+ "attributes": [
1305
+ {
1306
+ "name": "max-width",
1307
+ "type": {
1308
+ "text": "number"
1309
+ },
1310
+ "default": "100",
1311
+ "description": "Maximum width of the scale bar in pixels.",
1312
+ "fieldName": "maxWidth"
1313
+ },
1314
+ {
1315
+ "name": "position",
1316
+ "type": {
1317
+ "text": "\"top-left\" | \"top-right\" | \"bottom-left\" | \"bottom-right\""
1318
+ },
1319
+ "default": "\"bottom-left\"",
1320
+ "description": "Position of the control on the map.",
1321
+ "fieldName": "position"
1322
+ },
1323
+ {
1324
+ "name": "unit",
1325
+ "type": {
1326
+ "text": "\"imperial\" | \"metric\" | \"nautical\""
1327
+ },
1328
+ "default": "\"metric\"",
1329
+ "description": "Unit system for the scale bar.",
1330
+ "fieldName": "unit"
1331
+ }
1332
+ ],
1333
+ "superclass": {
1334
+ "name": "LitElement",
1335
+ "package": "lit"
1336
+ },
1337
+ "tagName": "sigvelo-maplibre-scale-control",
1338
+ "customElement": true,
1339
+ "modulePath": "src/components/scale-control/scale-control.ts",
1340
+ "definitionPath": "src/components/scale-control/scale-control.ts"
1341
+ }
1342
+ ],
1343
+ "exports": [
1344
+ {
1345
+ "kind": "custom-element-definition",
1346
+ "name": "sigvelo-maplibre-scale-control",
1347
+ "declaration": {
1348
+ "name": "SigveloMaplibreScaleControl",
1349
+ "module": "src/components/scale-control/scale-control.ts"
1350
+ }
1351
+ },
1352
+ {
1353
+ "kind": "js",
1354
+ "name": "SigveloMaplibreScaleControl",
1355
+ "declaration": {
1356
+ "name": "SigveloMaplibreScaleControl",
1357
+ "module": "src/components/scale-control/scale-control.ts"
1358
+ }
1359
+ }
1360
+ ]
1361
+ },
1362
+ {
1363
+ "kind": "javascript-module",
1364
+ "path": "src/components/tilelayer/tilelayer.ts",
1365
+ "declarations": [
1366
+ {
1367
+ "kind": "class",
1368
+ "description": "A tile layer for a MapLibre map. Supports both vector tile styles (via\n`style-url`) and raster XYZ tile sources (via `url`).\n\nMust be a child of `<sigvelo-maplibre-map>`.",
1369
+ "name": "SigveloMaplibreTilelayer",
1370
+ "members": [
1371
+ {
1372
+ "kind": "method",
1373
+ "name": "_addRasterLayer",
1374
+ "privacy": "private"
1375
+ },
1376
+ {
1377
+ "kind": "method",
1378
+ "name": "_applyTiles",
1379
+ "privacy": "private"
1380
+ },
1381
+ {
1382
+ "kind": "method",
1383
+ "name": "_removeRasterLayer",
1384
+ "privacy": "private"
1385
+ },
1386
+ {
1387
+ "kind": "field",
1388
+ "name": "attribution",
1389
+ "type": {
1390
+ "text": "string"
1391
+ },
1392
+ "default": "\"\"",
1393
+ "description": "Attribution text (used with raster `url` tiles).",
1394
+ "attribute": "attribution"
1395
+ },
1396
+ {
1397
+ "kind": "field",
1398
+ "name": "opacity",
1399
+ "type": {
1400
+ "text": "number"
1401
+ },
1402
+ "default": "1",
1403
+ "description": "Opacity of the tile layer (0-1).",
1404
+ "attribute": "opacity"
1405
+ },
1406
+ {
1407
+ "kind": "field",
1408
+ "name": "styleUrl",
1409
+ "type": {
1410
+ "text": "string"
1411
+ },
1412
+ "default": "\"\"",
1413
+ "description": "URL to a MapLibre/Mapbox style JSON document. When set, the map's\nentire style is replaced with this document (vector tiles, labels,\nstyling rules are all defined in the style JSON).",
1414
+ "attribute": "style-url"
1415
+ },
1416
+ {
1417
+ "kind": "field",
1418
+ "name": "url",
1419
+ "type": {
1420
+ "text": "string"
1421
+ },
1422
+ "default": "\"\"",
1423
+ "description": "XYZ raster tile URL template. When set (and `style-url` is empty),\nadds a raster tile source and layer to the current map style.",
1424
+ "attribute": "url"
1425
+ }
1426
+ ],
1427
+ "attributes": [
1428
+ {
1429
+ "name": "attribution",
1430
+ "type": {
1431
+ "text": "string"
1432
+ },
1433
+ "default": "\"\"",
1434
+ "description": "Attribution text (used with raster `url` tiles).",
1435
+ "fieldName": "attribution"
1436
+ },
1437
+ {
1438
+ "name": "opacity",
1439
+ "type": {
1440
+ "text": "number"
1441
+ },
1442
+ "default": "1",
1443
+ "description": "Opacity of the tile layer (0-1).",
1444
+ "fieldName": "opacity"
1445
+ },
1446
+ {
1447
+ "name": "style-url",
1448
+ "type": {
1449
+ "text": "string"
1450
+ },
1451
+ "default": "\"\"",
1452
+ "description": "URL to a MapLibre/Mapbox style JSON document. When set, the map's\nentire style is replaced with this document (vector tiles, labels,\nstyling rules are all defined in the style JSON).",
1453
+ "fieldName": "styleUrl"
1454
+ },
1455
+ {
1456
+ "name": "url",
1457
+ "type": {
1458
+ "text": "string"
1459
+ },
1460
+ "default": "\"\"",
1461
+ "description": "XYZ raster tile URL template. When set (and `style-url` is empty),\nadds a raster tile source and layer to the current map style.",
1462
+ "fieldName": "url"
1463
+ }
1464
+ ],
1465
+ "superclass": {
1466
+ "name": "LitElement",
1467
+ "package": "lit"
1468
+ },
1469
+ "tagName": "sigvelo-maplibre-tilelayer",
1470
+ "customElement": true,
1471
+ "modulePath": "src/components/tilelayer/tilelayer.ts",
1472
+ "definitionPath": "src/components/tilelayer/tilelayer.ts"
1473
+ }
1474
+ ],
1475
+ "exports": [
1476
+ {
1477
+ "kind": "custom-element-definition",
1478
+ "name": "sigvelo-maplibre-tilelayer",
1479
+ "declaration": {
1480
+ "name": "SigveloMaplibreTilelayer",
1481
+ "module": "src/components/tilelayer/tilelayer.ts"
1482
+ }
1483
+ },
1484
+ {
1485
+ "kind": "js",
1486
+ "name": "SigveloMaplibreTilelayer",
1487
+ "declaration": {
1488
+ "name": "SigveloMaplibreTilelayer",
1489
+ "module": "src/components/tilelayer/tilelayer.ts"
1490
+ }
1491
+ }
1492
+ ]
1493
+ },
1494
+ {
1495
+ "kind": "javascript-module",
1496
+ "path": "src/index.ts",
1497
+ "declarations": [],
1498
+ "exports": [
1499
+ {
1500
+ "kind": "js",
1501
+ "name": "*",
1502
+ "declaration": {
1503
+ "name": "*",
1504
+ "module": "src/components/map/map.js"
1505
+ }
1506
+ },
1507
+ {
1508
+ "kind": "js",
1509
+ "name": "*",
1510
+ "declaration": {
1511
+ "name": "*",
1512
+ "module": "src/components/tilelayer/tilelayer.js"
1513
+ }
1514
+ },
1515
+ {
1516
+ "kind": "js",
1517
+ "name": "*",
1518
+ "declaration": {
1519
+ "name": "*",
1520
+ "module": "src/components/marker/marker.js"
1521
+ }
1522
+ },
1523
+ {
1524
+ "kind": "js",
1525
+ "name": "*",
1526
+ "declaration": {
1527
+ "name": "*",
1528
+ "module": "src/components/popup/popup.js"
1529
+ }
1530
+ },
1531
+ {
1532
+ "kind": "js",
1533
+ "name": "*",
1534
+ "declaration": {
1535
+ "name": "*",
1536
+ "module": "src/components/geojson/geojson.js"
1537
+ }
1538
+ },
1539
+ {
1540
+ "kind": "js",
1541
+ "name": "*",
1542
+ "declaration": {
1543
+ "name": "*",
1544
+ "module": "src/components/circle/circle.js"
1545
+ }
1546
+ },
1547
+ {
1548
+ "kind": "js",
1549
+ "name": "*",
1550
+ "declaration": {
1551
+ "name": "*",
1552
+ "module": "src/components/polyline/polyline.js"
1553
+ }
1554
+ },
1555
+ {
1556
+ "kind": "js",
1557
+ "name": "*",
1558
+ "declaration": {
1559
+ "name": "*",
1560
+ "module": "src/components/polygon/polygon.js"
1561
+ }
1562
+ },
1563
+ {
1564
+ "kind": "js",
1565
+ "name": "*",
1566
+ "declaration": {
1567
+ "name": "*",
1568
+ "module": "src/components/scale-control/scale-control.js"
1569
+ }
1570
+ },
1571
+ {
1572
+ "kind": "js",
1573
+ "name": "*",
1574
+ "declaration": {
1575
+ "name": "*",
1576
+ "module": "src/components/layer/layer.js"
1577
+ }
1578
+ },
1579
+ {
1580
+ "kind": "js",
1581
+ "name": "*",
1582
+ "declaration": {
1583
+ "name": "*",
1584
+ "module": "src/components/control/control.js"
1585
+ }
1586
+ }
1587
+ ]
1588
+ }
1589
+ ],
1590
+ "package": {
1591
+ "name": "@mcp-b/geo-maplibre",
1592
+ "description": "MapLibre GL JS web components for Sigvelo, built with Lit.",
1593
+ "version": "0.2.0",
1594
+ "license": "MIT"
1595
+ }
1596
+ }