@vcmap/ui 6.1.0-rc.2 → 6.1.0-rc.4

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 (105) hide show
  1. package/config/base.config.json +6 -0
  2. package/config/clipping.config.json +384 -0
  3. package/config/cluster.config.json +106 -0
  4. package/config/concepts-show-case.config.json +4 -0
  5. package/config/projects.config.json +5 -2
  6. package/dist/assets/{cesium-57fbd309.js → cesium-bfb31a03.js} +438 -432
  7. package/dist/assets/cesium.js +1 -1
  8. package/dist/assets/{core-fd079400.js → core-28960288.js} +4913 -4516
  9. package/dist/assets/core.js +1 -1
  10. package/dist/assets/{ol-50dfef96.js → ol-338a87a3.js} +23518 -22404
  11. package/dist/assets/ol.js +1 -1
  12. package/dist/assets/ui-4ae4c67a.css +1 -0
  13. package/dist/assets/{ui-5135917c.js → ui-4ae4c67a.js} +13456 -12758
  14. package/dist/assets/ui.js +1 -1
  15. package/dist/assets/vue.js +1 -1
  16. package/dist/assets/{vuetify-f02b7bb9.css → vuetify-1f5b5c90.css} +2 -2
  17. package/dist/assets/{vuetify-f02b7bb9.js → vuetify-1f5b5c90.js} +8024 -7634
  18. package/dist/assets/vuetify.js +1 -1
  19. package/index.d.ts +38 -19
  20. package/index.js +35 -6
  21. package/lib/olLib.js +25 -3
  22. package/package.json +6 -6
  23. package/plugins/@vcmap-show-case/callback-tester/README.md +3 -0
  24. package/plugins/@vcmap-show-case/callback-tester/package.json +5 -0
  25. package/plugins/@vcmap-show-case/callback-tester/src/CallbackTester.vue +62 -0
  26. package/plugins/@vcmap-show-case/callback-tester/src/index.js +48 -0
  27. package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +1 -0
  28. package/src/actions/actionHelper.d.ts +1 -0
  29. package/src/actions/actionHelper.js +70 -19
  30. package/src/application/VcsApp.vue +83 -50
  31. package/src/application/VcsApp.vue.d.ts +24 -2
  32. package/src/application/VcsContainer.vue.d.ts +8 -0
  33. package/src/application/VcsObliqueFooter.vue +9 -3
  34. package/src/application/VcsSplashScreen.vue +37 -0
  35. package/src/application/VcsSplashScreen.vue.d.ts +6 -0
  36. package/src/application/positionDisplayInteraction.js +1 -1
  37. package/src/callback/activateClippingPolygonCallback.d.ts +29 -0
  38. package/src/callback/activateClippingPolygonCallback.js +54 -0
  39. package/src/callback/closeSplashScreenCallback.d.ts +8 -0
  40. package/src/callback/closeSplashScreenCallback.js +33 -0
  41. package/src/callback/deactivateClippingPolygonCallback.d.ts +29 -0
  42. package/src/callback/deactivateClippingPolygonCallback.js +54 -0
  43. package/src/callback/openSplashScreenCallback.d.ts +8 -0
  44. package/src/callback/openSplashScreenCallback.js +35 -0
  45. package/src/callback/toggleNavbarButtonCallback.d.ts +36 -0
  46. package/src/callback/toggleNavbarButtonCallback.js +62 -0
  47. package/src/components/form-inputs-controls/VcsSelect.vue +1 -1
  48. package/src/components/form-inputs-controls/VcsTextArea.vue +12 -7
  49. package/src/components/form-output/markdownHelper.d.ts +0 -25
  50. package/src/components/form-output/markdownHelper.js +1 -386
  51. package/src/components/lists/VcsGroupedList.vue +178 -0
  52. package/src/components/lists/VcsGroupedList.vue.d.ts +17 -0
  53. package/src/components/lists/VcsList.vue +142 -396
  54. package/src/components/lists/VcsList.vue.d.ts +38 -168
  55. package/src/components/lists/VcsTreeview.vue +11 -12
  56. package/src/components/lists/listHelper.d.ts +87 -0
  57. package/src/components/lists/listHelper.js +348 -0
  58. package/src/components/section/VcsFormSection.vue +7 -2
  59. package/src/components/section/VcsFormSection.vue.d.ts +9 -0
  60. package/src/components/vector-properties/VcsVectorPropertiesComponent.vue.d.ts +1 -1
  61. package/src/contentTree/LayerTree.vue +2 -1
  62. package/src/contentTree/LayerTree.vue.d.ts +2 -0
  63. package/src/contentTree/contentTreeCollection.d.ts +1 -0
  64. package/src/contentTree/contentTreeCollection.js +7 -3
  65. package/src/contentTree/contentTreeItem.js +4 -2
  66. package/src/contentTree/groupContentTreeItem.js +5 -3
  67. package/src/featureInfo/ClusterFeatureComponent.vue +58 -0
  68. package/src/featureInfo/ClusterFeatureComponent.vue.d.ts +6 -0
  69. package/src/featureInfo/abstractFeatureInfoView.js +1 -2
  70. package/src/featureInfo/featureInfo.d.ts +87 -1
  71. package/src/featureInfo/featureInfo.js +350 -34
  72. package/src/featureInfo/featureInfoInteraction.js +18 -3
  73. package/src/featureInfo/iframeFeatureInfoView.js +1 -1
  74. package/src/featureInfo/markdownBalloonFeatureInfoView.js +2 -4
  75. package/src/featureInfo/markdownFeatureInfoView.js +1 -1
  76. package/src/i18n/de.d.ts +17 -4
  77. package/src/i18n/de.js +7 -0
  78. package/src/i18n/en.d.ts +17 -4
  79. package/src/i18n/en.js +7 -0
  80. package/src/legend/legendHelper.d.ts +1 -1
  81. package/src/legend/legendHelper.js +52 -9
  82. package/src/localStorage.d.ts +21 -0
  83. package/src/localStorage.js +51 -0
  84. package/src/manager/collectionManager/CollectionComponent.vue +1 -1
  85. package/src/manager/collectionManager/CollectionComponentContent.vue +2 -3
  86. package/src/manager/collectionManager/CollectionComponentList.vue +2 -3
  87. package/src/manager/collectionManager/CollectionComponentStandalone.vue +1 -1
  88. package/src/manager/navbarManager.js +9 -4
  89. package/src/manager/toolbox/ToolboxManagerComponent.vue +10 -8
  90. package/src/manager/toolbox/ToolboxManagerComponent.vue.d.ts +11 -0
  91. package/src/manager/window/windowHelper.d.ts +7 -3
  92. package/src/manager/window/windowHelper.js +30 -10
  93. package/src/navigation/overviewMap.d.ts +1 -0
  94. package/src/navigation/overviewMap.js +4 -3
  95. package/src/pluginHelper.d.ts +7 -0
  96. package/src/pluginHelper.js +18 -4
  97. package/src/search/ResultItem.vue.d.ts +1 -1
  98. package/src/search/search.js +1 -1
  99. package/src/state.d.ts +4 -2
  100. package/src/state.js +54 -31
  101. package/src/uiConfig.d.ts +27 -0
  102. package/src/uiConfig.js +16 -1
  103. package/src/vcsUiApp.js +7 -11
  104. package/dist/assets/ui-5135917c.css +0 -1
  105. /package/dist/assets/{vue-c3c55d88.js → vue-b5c1e81a.js} +0 -0
@@ -0,0 +1,106 @@
1
+ {
2
+ "name": "Cluster Example",
3
+ "layers": [
4
+ {
5
+ "type": "GeoJSONLayer",
6
+ "name": "12de4200e2e76f756e06da59c07eae3a1760acdd",
7
+ "activeOnStartup": true,
8
+ "balloonHeightOffset": 0,
9
+ "vectorProperties": {
10
+ "altitudeMode": "relativeToGround",
11
+ "heightAboveGround": 65
12
+ },
13
+ "projection": {
14
+ "epsg": "4326",
15
+ "proj4": "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"
16
+ },
17
+ "style": "universal",
18
+ "genericFeatureProperties": {
19
+ "layername": "Grundschulen",
20
+ "baseurl": "https://www.businesslocationcenter.de/wsv-live/",
21
+ "category": "Schulstandorte Berlin"
22
+ },
23
+ "baseurl": "https://www.businesslocationcenter.de/wsv-live/",
24
+ "url": "https://www.businesslocationcenter.de/wsv-live/api/de/layer/12de4200e2e76f756e06da59c07eae3a1760acdd.geojson",
25
+ "vectorClusterGroup": "clusterLayerOthers",
26
+ "properties": {
27
+ "title": "Grundschulen",
28
+ "featureInfo": "tableAll",
29
+ "attributions": [
30
+ {
31
+ "provider": "Senatsverwaltung für Bildung, Jugend und Familie",
32
+ "url": "https://www.berlin.de/sen/bjf/",
33
+ "year": "2024"
34
+ }
35
+ ]
36
+ }
37
+ },
38
+ {
39
+ "type": "GeoJSONLayer",
40
+ "name": "b408b454472a5ce5dfb44bb57afe8da1baeeb6cf",
41
+ "balloonHeightOffset": 0,
42
+ "vectorProperties": {
43
+ "altitudeMode": "relativeToGround",
44
+ "heightAboveGround": 65
45
+ },
46
+ "projection": {
47
+ "epsg": "4326",
48
+ "proj4": "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"
49
+ },
50
+ "style": "universal",
51
+ "genericFeatureProperties": {
52
+ "layername": "Berufliche Schulen",
53
+ "baseurl": "https://www.businesslocationcenter.de/wsv-live/",
54
+ "category": "Schulstandorte Berlin"
55
+ },
56
+ "baseurl": "https://www.businesslocationcenter.de/wsv-live/",
57
+ "url": "https://www.businesslocationcenter.de/wsv-live/api/de/layer/b408b454472a5ce5dfb44bb57afe8da1baeeb6cf.geojson",
58
+ "vectorClusterGroup": "clusterLayerOthers",
59
+ "properties": {
60
+ "title": "Berufliche Schulen",
61
+ "featureInfo": "genericBalloon",
62
+ "attributions": [
63
+ {
64
+ "provider": "Senatsverwaltung für Bildung, Jugend und Familie",
65
+ "url": "https://www.berlin.de/sen/bjf/",
66
+ "year": "2024"
67
+ }
68
+ ]
69
+ }
70
+ }
71
+ ],
72
+ "vectorClusterGroups": [
73
+ {
74
+ "type": "VectorClusterLayer",
75
+ "name": "clusterLayerOthers",
76
+ "showInContent": true,
77
+ "defaultFeatureTemplate": "<%=name%>",
78
+ "clusterDistance": 90,
79
+ "style": {
80
+ "type": "cluster",
81
+ "fillColor": "#002e4d",
82
+ "strokeColor": "#cc970f",
83
+ "strokeWidth": 7,
84
+ "textColor": "#ffffff",
85
+ "font": "bold 18px/53px DroidSans400, Droid, Arial, sans-serif",
86
+ "scaleFactor": 0.125,
87
+ "breaks": [2, 3, 4, 5, 10, 15, 25, 50, 100, 250, 500, 1000, 2000, 5000]
88
+ },
89
+ "heightAboveGround": 65,
90
+ "altitudeMode": "relativeToGround",
91
+ "url": ""
92
+ }
93
+ ],
94
+ "contentTree": [
95
+ {
96
+ "type": "LayerContentTreeItem",
97
+ "name": "cluster",
98
+ "layerName": "12de4200e2e76f756e06da59c07eae3a1760acdd"
99
+ },
100
+ {
101
+ "type": "LayerContentTreeItem",
102
+ "name": "cluster2",
103
+ "layerName": "b408b454472a5ce5dfb44bb57afe8da1baeeb6cf"
104
+ }
105
+ ]
106
+ }
@@ -3,6 +3,10 @@
3
3
  "_id": "concepts-show-case",
4
4
  "description": "module containing showcases plugins demonstrating concepts",
5
5
  "plugins": [
6
+ {
7
+ "name": "callback-tester",
8
+ "entry": "plugins/@vcmap-show-case/callback-tester/index.js"
9
+ },
6
10
  {
7
11
  "name": "category-tester",
8
12
  "entry": "plugins/@vcmap-show-case/category-tester/index.js"
@@ -10,7 +10,8 @@
10
10
  "config/dev.config.json",
11
11
  "config/codes.config.json",
12
12
  "config/components-show-case.config.json",
13
- "config/concepts-show-case.config.json"
13
+ "config/concepts-show-case.config.json",
14
+ "config/cluster.config.json"
14
15
  ],
15
16
  "projects": [
16
17
  {
@@ -32,7 +33,9 @@
32
33
  "config/graphFeatureInfo.config.json",
33
34
  "config/splashscreen.config.json",
34
35
  "config/hello-world.config.json",
35
- "config/theming.config.json"
36
+ "config/theming.config.json",
37
+ "config/clipping.config.json",
38
+ "config/cluster.config.json"
36
39
  ]
37
40
  }
38
41
  ]