@vcmap/ui 5.1.8 → 5.2.1
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/build/buildTypes.js +9 -0
- package/config/base.config.json +33 -2
- package/config/dev.config.json +22 -2
- package/config/www.config.json +16 -0
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core.45041e.js → core.a8552c.js} +4160 -4041
- package/dist/assets/core.js +1 -1
- package/dist/assets/index-8783569c.js +1 -0
- package/dist/assets/ol.js +1 -1
- package/dist/assets/{ui.74ba2a.css → ui.aebd62.css} +2 -2
- package/dist/assets/{ui.74ba2a.js → ui.aebd62.js} +8031 -6985
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue.js +2 -2
- package/dist/assets/{vuetify.72ace9.js → vuetify.c8459d.js} +1 -1
- package/dist/assets/vuetify.js +2 -2
- package/dist/index.html +1 -1
- package/index.d.ts +22 -2
- package/index.js +29 -1
- package/package.json +2 -2
- package/plugins/@vcmap-show-case/collection-manager-example/src/CollectionManagerExample.vue +110 -37
- package/plugins/@vcmap-show-case/collection-manager-example/src/index.js +4 -0
- package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +10 -3
- package/plugins/@vcmap-show-case/panel-tester/README.md +3 -0
- package/plugins/@vcmap-show-case/panel-tester/package.json +5 -0
- package/plugins/@vcmap-show-case/panel-tester/src/IframePanelExample.vue +15 -0
- package/plugins/@vcmap-show-case/panel-tester/src/ImgPanelExample.vue +19 -0
- package/plugins/@vcmap-show-case/panel-tester/src/PanelExample.vue +128 -0
- package/plugins/@vcmap-show-case/panel-tester/src/TextPanelExample.vue +34 -0
- package/plugins/@vcmap-show-case/panel-tester/src/index.js +63 -0
- package/plugins/package.json +7 -3
- package/src/actions/actionHelper.js +1 -1
- package/src/actions/flightActions.d.ts +38 -2
- package/src/actions/flightActions.js +257 -6
- package/src/application/VcsApp.vue +4 -104
- package/src/application/VcsApp.vue.d.ts +0 -6
- package/src/application/VcsContainer.vue +105 -0
- package/src/application/VcsContainer.vue.d.ts +14 -0
- package/src/application/VcsMainMap.vue +68 -0
- package/src/application/VcsMainMap.vue.d.ts +9 -0
- package/src/application/markdownHelper.d.ts +7 -0
- package/src/application/markdownHelper.js +57 -1
- package/src/components/form-inputs-controls/VcsRadioGrid.vue +27 -42
- package/src/contentTree/LayerTree.vue +40 -14
- package/src/downloadHelper.d.ts +0 -2
- package/src/downloadHelper.js +2 -4
- package/src/featureInfo/BalloonComponent.vue +31 -3
- package/src/featureInfo/BalloonComponent.vue.d.ts +1 -0
- package/src/featureInfo/IframeComponent.vue +55 -0
- package/src/featureInfo/IframeComponent.vue.d.ts +25 -0
- package/src/featureInfo/MarkdownBalloonComponent.vue +24 -0
- package/src/featureInfo/MarkdownBalloonComponent.vue.d.ts +12 -0
- package/src/featureInfo/abstractFeatureInfoView.js +54 -22
- package/src/featureInfo/addressBalloonFeatureInfoView.d.ts +2 -2
- package/src/featureInfo/addressBalloonFeatureInfoView.js +1 -1
- package/src/featureInfo/balloonFeatureInfoView.js +1 -1
- package/src/featureInfo/balloonHelper.js +16 -9
- package/src/featureInfo/featureInfo.js +15 -0
- package/src/featureInfo/iframeFeatureInfoView.js +1 -20
- package/src/featureInfo/iframeWmsFeatureInfoView.d.ts +41 -0
- package/src/featureInfo/iframeWmsFeatureInfoView.js +73 -0
- package/src/featureInfo/markdownBalloonFeatureInfoView.d.ts +47 -0
- package/src/featureInfo/markdownBalloonFeatureInfoView.js +81 -0
- package/src/featureInfo/markdownFeatureInfoView.d.ts +47 -0
- package/src/featureInfo/markdownFeatureInfoView.js +95 -0
- package/src/i18n/de.d.ts +8 -3
- package/src/i18n/de.js +3 -0
- package/src/i18n/en.d.ts +32 -26
- package/src/i18n/en.js +4 -1
- package/src/manager/collectionManager/CollectionComponent.vue +12 -49
- package/src/manager/collectionManager/CollectionComponent.vue.d.ts +5 -9
- package/src/manager/collectionManager/CollectionComponentContent.vue +102 -0
- package/src/manager/collectionManager/CollectionComponentContent.vue.d.ts +17 -0
- package/src/manager/collectionManager/CollectionComponentList.vue +10 -2
- package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +9 -0
- package/src/manager/collectionManager/CollectionComponentStandalone.vue +91 -0
- package/src/manager/collectionManager/CollectionComponentStandalone.vue.d.ts +9 -0
- package/src/manager/collectionManager/collectionManager.d.ts +2 -2
- package/src/manager/collectionManager/collectionManager.js +21 -19
- package/src/manager/panel/PanelComponent.vue +110 -0
- package/src/manager/panel/PanelComponent.vue.d.ts +19 -0
- package/src/manager/panel/PanelManagerComponent.vue +224 -0
- package/src/manager/panel/PanelManagerComponent.vue.d.ts +36 -0
- package/src/manager/panel/panelHelper.d.ts +83 -0
- package/src/manager/panel/panelHelper.js +272 -0
- package/src/manager/panel/panelManager.d.ts +338 -0
- package/src/manager/panel/panelManager.js +381 -0
- package/src/manager/window/WindowManager.vue +14 -0
- package/src/manager/window/windowHelper.js +1 -1
- package/src/manager/window/windowManager.js +4 -0
- package/src/search/ResultItem.vue +1 -1
- package/src/search/search.d.ts +2 -2
- package/src/search/search.js +2 -2
- package/src/vcsUiApp.d.ts +14 -0
- package/src/vcsUiApp.js +23 -1
- package/dist/assets/index-3cd5a3f3.js +0 -1
- /package/dist/assets/{cesium.035e3a.js → cesium.1b488a.js} +0 -0
- /package/dist/assets/{ol.eb3bee.js → ol.7488a7.js} +0 -0
- /package/dist/assets/{vue.17a8fa.js → vue.df3538.js} +0 -0
- /package/dist/assets/{vuetify.72ace9.css → vuetify.c8459d.css} +0 -0
package/build/buildTypes.js
CHANGED
@@ -74,6 +74,15 @@ const knownExtensionErrors = [
|
|
74
74
|
},
|
75
75
|
],
|
76
76
|
},
|
77
|
+
{
|
78
|
+
file: './src/manager/panel/panelManager.d.ts',
|
79
|
+
replacements: [
|
80
|
+
{
|
81
|
+
regex: /(add\(panelComponentOptions)/,
|
82
|
+
replace: '// @ts-ignore\n$1',
|
83
|
+
},
|
84
|
+
],
|
85
|
+
},
|
77
86
|
{
|
78
87
|
file: './src/manager/toolbox/toolboxManager.d.ts',
|
79
88
|
replacements: [
|
package/config/base.config.json
CHANGED
@@ -512,6 +512,26 @@
|
|
512
512
|
}
|
513
513
|
],
|
514
514
|
"featureInfo": [
|
515
|
+
{
|
516
|
+
"type": "TableFeatureInfoView",
|
517
|
+
"name": "tableAllWithTemplateHeader",
|
518
|
+
"keyMapping": {
|
519
|
+
"roofType": "codeLists.keys.roofType",
|
520
|
+
"function": "codeLists.keys.function"
|
521
|
+
},
|
522
|
+
"valueMapping": {
|
523
|
+
"roofType": "codeLists.values.roofType.${value}",
|
524
|
+
"function": {
|
525
|
+
"1000": "codeLists.values.function.1000",
|
526
|
+
"1111": "myOwnMapping1111"
|
527
|
+
}
|
528
|
+
},
|
529
|
+
"window": {
|
530
|
+
"state": {
|
531
|
+
"headerTitle": ["{{layerName}}", ": ", "{{gml:name}}"]
|
532
|
+
}
|
533
|
+
}
|
534
|
+
},
|
515
535
|
{
|
516
536
|
"type": "TableFeatureInfoView",
|
517
537
|
"name": "tableAll",
|
@@ -525,6 +545,11 @@
|
|
525
545
|
"1000": "codeLists.values.function.1000",
|
526
546
|
"1111": "myOwnMapping1111"
|
527
547
|
}
|
548
|
+
},
|
549
|
+
"window": {
|
550
|
+
"state": {
|
551
|
+
"headerTitle": ["{{layerName}}", ": ", "{{gml:name}}"]
|
552
|
+
}
|
528
553
|
}
|
529
554
|
},
|
530
555
|
{
|
@@ -537,6 +562,12 @@
|
|
537
562
|
"valueMapping": {
|
538
563
|
"function": "codeLists.values.function.${value}"
|
539
564
|
}
|
565
|
+
},
|
566
|
+
{
|
567
|
+
"type": "AddressBalloonFeatureInfoView",
|
568
|
+
"name": "addressBalloon",
|
569
|
+
"balloonSubtitle": "",
|
570
|
+
"addressName": "name"
|
540
571
|
}
|
541
572
|
],
|
542
573
|
"maps": [
|
@@ -637,7 +668,7 @@
|
|
637
668
|
"Transparentbuildings"
|
638
669
|
],
|
639
670
|
"title": "Berlin - LOD2",
|
640
|
-
"featureInfo": "
|
671
|
+
"featureInfo": "tableAllWithTemplateHeader"
|
641
672
|
}
|
642
673
|
},
|
643
674
|
{
|
@@ -655,7 +686,7 @@
|
|
655
686
|
},
|
656
687
|
"activeOnStartup": false,
|
657
688
|
"properties": {
|
658
|
-
"featureInfo": "
|
689
|
+
"featureInfo": "addressBalloon",
|
659
690
|
"title": "layers.osmBuildingFootprints.title",
|
660
691
|
"tooltip": "OpenStreetMap Building Polygons"
|
661
692
|
}
|
package/config/dev.config.json
CHANGED
@@ -40,11 +40,27 @@
|
|
40
40
|
}
|
41
41
|
}
|
42
42
|
},
|
43
|
+
{
|
44
|
+
"type": "MarkdownBalloonFeatureInfoView",
|
45
|
+
"name": "markdownFeatureInfo",
|
46
|
+
"template": "# {{featureId}}\n- Altitude Mode: {{Altitude Mode}}\n [Link text Here](https://vc.systems/?id={{id}})",
|
47
|
+
"keyMapping": {
|
48
|
+
"olcs_storeyNumber": "Storey Number",
|
49
|
+
"olcs_storeyHeight": "Storey Height",
|
50
|
+
"olcs_altitudeMode": "Altitude Mode"
|
51
|
+
}
|
52
|
+
},
|
43
53
|
{
|
44
54
|
"type": "BalloonFeatureInfoView",
|
45
55
|
"name": "genericBalloonLaerm",
|
46
56
|
"title": "Lärmkarte Bayern",
|
47
|
-
"subtitle": "WMS Feature Info"
|
57
|
+
"subtitle": "WMS Feature Info",
|
58
|
+
"window": {
|
59
|
+
"position": {
|
60
|
+
"width": "200px",
|
61
|
+
"maxHeight": "100px"
|
62
|
+
}
|
63
|
+
}
|
48
64
|
},
|
49
65
|
{
|
50
66
|
"type": "TableFeatureInfoView",
|
@@ -90,7 +106,7 @@
|
|
90
106
|
"zIndex": 11,
|
91
107
|
"properties": {
|
92
108
|
"title": "Test GeoJSON",
|
93
|
-
"featureInfo": "
|
109
|
+
"featureInfo": "markdownFeatureInfo",
|
94
110
|
"legend": [
|
95
111
|
{
|
96
112
|
"type": "StyleLegendItem",
|
@@ -568,6 +584,10 @@
|
|
568
584
|
"name": "window-tester",
|
569
585
|
"entry": "plugins/@vcmap-show-case/window-tester/index.js"
|
570
586
|
},
|
587
|
+
{
|
588
|
+
"name": "panel-tester",
|
589
|
+
"entry": "plugins/@vcmap-show-case/panel-tester/index.js"
|
590
|
+
},
|
571
591
|
{
|
572
592
|
"name": "toolbox-example",
|
573
593
|
"entry": "plugins/@vcmap-show-case/toolbox-example/index.js"
|
package/config/www.config.json
CHANGED
@@ -1913,6 +1913,22 @@
|
|
1913
1913
|
"serviceUrl": "https://demo.virtualcityplanner.de/",
|
1914
1914
|
"projectId": "rBW58EJz5RwCz75Q3",
|
1915
1915
|
"mapId": "csunCGqmQE8Py4KCe"
|
1916
|
+
},
|
1917
|
+
{
|
1918
|
+
"name": "@vcmap/transparent-terrain",
|
1919
|
+
"entry": "plugins/@vcmap/transparent-terrain/index.js"
|
1920
|
+
},
|
1921
|
+
{
|
1922
|
+
"name": "@vcmap/search-coordinate",
|
1923
|
+
"entry": "plugins/@vcmap/search-coordinate/index.js"
|
1924
|
+
},
|
1925
|
+
{
|
1926
|
+
"name": "@vcmap/clipping-tool",
|
1927
|
+
"entry": "plugins/@vcmap/clipping-tool/index.js"
|
1928
|
+
},
|
1929
|
+
{
|
1930
|
+
"name": "@vcmap/height-profile",
|
1931
|
+
"entry": "plugins/@vcmap/height-profile/index.js"
|
1916
1932
|
}
|
1917
1933
|
]
|
1918
1934
|
}
|
package/dist/assets/cesium.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from "./cesium.
|
1
|
+
export * from "./cesium.1b488a.js";
|