@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.
- package/config/base.config.json +6 -0
- package/config/clipping.config.json +384 -0
- package/config/cluster.config.json +106 -0
- package/config/concepts-show-case.config.json +4 -0
- package/config/projects.config.json +5 -2
- package/dist/assets/{cesium-57fbd309.js → cesium-bfb31a03.js} +438 -432
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core-fd079400.js → core-28960288.js} +4913 -4516
- package/dist/assets/core.js +1 -1
- package/dist/assets/{ol-50dfef96.js → ol-338a87a3.js} +23518 -22404
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui-4ae4c67a.css +1 -0
- package/dist/assets/{ui-5135917c.js → ui-4ae4c67a.js} +13456 -12758
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue.js +1 -1
- package/dist/assets/{vuetify-f02b7bb9.css → vuetify-1f5b5c90.css} +2 -2
- package/dist/assets/{vuetify-f02b7bb9.js → vuetify-1f5b5c90.js} +8024 -7634
- package/dist/assets/vuetify.js +1 -1
- package/index.d.ts +38 -19
- package/index.js +35 -6
- package/lib/olLib.js +25 -3
- package/package.json +6 -6
- package/plugins/@vcmap-show-case/callback-tester/README.md +3 -0
- package/plugins/@vcmap-show-case/callback-tester/package.json +5 -0
- package/plugins/@vcmap-show-case/callback-tester/src/CallbackTester.vue +62 -0
- package/plugins/@vcmap-show-case/callback-tester/src/index.js +48 -0
- package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +1 -0
- package/src/actions/actionHelper.d.ts +1 -0
- package/src/actions/actionHelper.js +70 -19
- package/src/application/VcsApp.vue +83 -50
- package/src/application/VcsApp.vue.d.ts +24 -2
- package/src/application/VcsContainer.vue.d.ts +8 -0
- package/src/application/VcsObliqueFooter.vue +9 -3
- package/src/application/VcsSplashScreen.vue +37 -0
- package/src/application/VcsSplashScreen.vue.d.ts +6 -0
- package/src/application/positionDisplayInteraction.js +1 -1
- package/src/callback/activateClippingPolygonCallback.d.ts +29 -0
- package/src/callback/activateClippingPolygonCallback.js +54 -0
- package/src/callback/closeSplashScreenCallback.d.ts +8 -0
- package/src/callback/closeSplashScreenCallback.js +33 -0
- package/src/callback/deactivateClippingPolygonCallback.d.ts +29 -0
- package/src/callback/deactivateClippingPolygonCallback.js +54 -0
- package/src/callback/openSplashScreenCallback.d.ts +8 -0
- package/src/callback/openSplashScreenCallback.js +35 -0
- package/src/callback/toggleNavbarButtonCallback.d.ts +36 -0
- package/src/callback/toggleNavbarButtonCallback.js +62 -0
- package/src/components/form-inputs-controls/VcsSelect.vue +1 -1
- package/src/components/form-inputs-controls/VcsTextArea.vue +12 -7
- package/src/components/form-output/markdownHelper.d.ts +0 -25
- package/src/components/form-output/markdownHelper.js +1 -386
- package/src/components/lists/VcsGroupedList.vue +178 -0
- package/src/components/lists/VcsGroupedList.vue.d.ts +17 -0
- package/src/components/lists/VcsList.vue +142 -396
- package/src/components/lists/VcsList.vue.d.ts +38 -168
- package/src/components/lists/VcsTreeview.vue +11 -12
- package/src/components/lists/listHelper.d.ts +87 -0
- package/src/components/lists/listHelper.js +348 -0
- package/src/components/section/VcsFormSection.vue +7 -2
- package/src/components/section/VcsFormSection.vue.d.ts +9 -0
- package/src/components/vector-properties/VcsVectorPropertiesComponent.vue.d.ts +1 -1
- package/src/contentTree/LayerTree.vue +2 -1
- package/src/contentTree/LayerTree.vue.d.ts +2 -0
- package/src/contentTree/contentTreeCollection.d.ts +1 -0
- package/src/contentTree/contentTreeCollection.js +7 -3
- package/src/contentTree/contentTreeItem.js +4 -2
- package/src/contentTree/groupContentTreeItem.js +5 -3
- package/src/featureInfo/ClusterFeatureComponent.vue +58 -0
- package/src/featureInfo/ClusterFeatureComponent.vue.d.ts +6 -0
- package/src/featureInfo/abstractFeatureInfoView.js +1 -2
- package/src/featureInfo/featureInfo.d.ts +87 -1
- package/src/featureInfo/featureInfo.js +350 -34
- package/src/featureInfo/featureInfoInteraction.js +18 -3
- package/src/featureInfo/iframeFeatureInfoView.js +1 -1
- package/src/featureInfo/markdownBalloonFeatureInfoView.js +2 -4
- package/src/featureInfo/markdownFeatureInfoView.js +1 -1
- package/src/i18n/de.d.ts +17 -4
- package/src/i18n/de.js +7 -0
- package/src/i18n/en.d.ts +17 -4
- package/src/i18n/en.js +7 -0
- package/src/legend/legendHelper.d.ts +1 -1
- package/src/legend/legendHelper.js +52 -9
- package/src/localStorage.d.ts +21 -0
- package/src/localStorage.js +51 -0
- package/src/manager/collectionManager/CollectionComponent.vue +1 -1
- package/src/manager/collectionManager/CollectionComponentContent.vue +2 -3
- package/src/manager/collectionManager/CollectionComponentList.vue +2 -3
- package/src/manager/collectionManager/CollectionComponentStandalone.vue +1 -1
- package/src/manager/navbarManager.js +9 -4
- package/src/manager/toolbox/ToolboxManagerComponent.vue +10 -8
- package/src/manager/toolbox/ToolboxManagerComponent.vue.d.ts +11 -0
- package/src/manager/window/windowHelper.d.ts +7 -3
- package/src/manager/window/windowHelper.js +30 -10
- package/src/navigation/overviewMap.d.ts +1 -0
- package/src/navigation/overviewMap.js +4 -3
- package/src/pluginHelper.d.ts +7 -0
- package/src/pluginHelper.js +18 -4
- package/src/search/ResultItem.vue.d.ts +1 -1
- package/src/search/search.js +1 -1
- package/src/state.d.ts +4 -2
- package/src/state.js +54 -31
- package/src/uiConfig.d.ts +27 -0
- package/src/uiConfig.js +16 -1
- package/src/vcsUiApp.js +7 -11
- package/dist/assets/ui-5135917c.css +0 -1
- /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
|
]
|