@vcmap/ui 6.1.0-rc.6 → 6.1.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 (149) hide show
  1. package/config/base.config.json +7 -3
  2. package/config/cluster.config.json +5 -14
  3. package/config/dev.config.json +175 -56
  4. package/config/projects.config.json +2 -1
  5. package/config/splashscreen.config.json +6 -10
  6. package/config/vectorTile.config.json +42 -1
  7. package/dist/assets/{cesium-f5e8e354.js → cesium-664ad022.js} +53 -23
  8. package/dist/assets/cesium.js +1 -1
  9. package/dist/assets/{core-c134a524.js → core-841b71a4.js} +8458 -5828
  10. package/dist/assets/core.js +1 -1
  11. package/dist/assets/{ol-2752311f.js → ol-2e095c08.js} +87 -37
  12. package/dist/assets/ol.js +1 -1
  13. package/dist/assets/ui-2fd6f47d.css +1 -0
  14. package/dist/assets/{ui-83514586.js → ui-2fd6f47d.js} +21376 -20063
  15. package/dist/assets/ui.js +1 -1
  16. package/dist/assets/vue.js +1 -1
  17. package/dist/assets/{vuetify-5dbe2644.css → vuetify-4bc77ff7.css} +2 -2
  18. package/dist/assets/{vuetify-5dbe2644.js → vuetify-4bc77ff7.js} +7520 -7373
  19. package/dist/assets/vuetify.js +1 -1
  20. package/dist/index.html +1 -1
  21. package/index.d.ts +15 -5
  22. package/index.html +1 -1
  23. package/index.js +14 -5
  24. package/package.json +12 -8
  25. package/plugins/@vcmap-show-case/theming-example/src/index.js +1 -0
  26. package/plugins/@vcmap-show-case/vector-properties-example/src/LayerSettings.vue +39 -0
  27. package/plugins/@vcmap-show-case/vector-properties-example/src/VectorPropertiesExample.vue +3 -0
  28. package/plugins/@vcmap-show-case/vector-properties-example/src/lib.js +13 -0
  29. package/plugins/@vcmap-show-case/window-tester/src/WindowExample.vue +9 -0
  30. package/plugins/package.json +7 -5
  31. package/src/actions/actionHelper.d.ts +6 -0
  32. package/src/actions/actionHelper.js +22 -0
  33. package/src/actions/deepPickingAction.d.ts +23 -0
  34. package/src/actions/deepPickingAction.js +399 -0
  35. package/src/application/MapsGroupMobileMenu.vue +105 -0
  36. package/src/application/MapsGroupMobileMenu.vue.d.ts +7 -0
  37. package/src/application/VcsApp.vue +51 -24
  38. package/src/application/VcsApp.vue.d.ts +9 -2
  39. package/src/application/VcsAttributionsFooter.vue +1 -0
  40. package/src/application/VcsContainer.vue +36 -13
  41. package/src/application/VcsContainer.vue.d.ts +7 -0
  42. package/src/application/VcsMobileMenuList.vue +111 -0
  43. package/src/application/VcsMobileMenuList.vue.d.ts +2 -0
  44. package/src/application/VcsNavbar.vue +15 -3
  45. package/src/application/VcsNavbarMobile.vue +206 -0
  46. package/src/application/VcsNavbarMobile.vue.d.ts +42 -0
  47. package/src/application/VcsPositionDisplay.vue +1 -0
  48. package/src/application/VcsSplashScreen.vue +39 -7
  49. package/src/application/VcsSplashScreen.vue.d.ts +6 -0
  50. package/src/application/uiConfigHelper.d.ts +12 -0
  51. package/src/application/uiConfigHelper.js +37 -0
  52. package/src/components/buttons/VcsActionButtonList.vue +1 -0
  53. package/src/components/buttons/VcsToolButton.vue +8 -1
  54. package/src/components/buttons/VcsToolButton.vue.d.ts +1 -0
  55. package/src/components/form-inputs-controls/VcsSelect.vue +8 -6
  56. package/src/components/form-output/VcsTemplateMarkdown.vue +43 -0
  57. package/src/components/form-output/VcsTemplateMarkdown.vue.d.ts +9 -0
  58. package/src/components/icons/+all.d.ts +5 -0
  59. package/src/components/icons/+all.js +14 -0
  60. package/src/components/lists/VcsActionList.vue +1 -0
  61. package/src/components/lists/VcsGroupedList.vue +2 -1
  62. package/src/components/lists/VcsListItemComponent.vue +1 -0
  63. package/src/components/lists/VcsTreeNode.vue +11 -2
  64. package/src/components/lists/VcsTreeview.vue +40 -3
  65. package/src/components/lists/VcsTreeview.vue.d.ts +1 -0
  66. package/src/components/lists/VcsTreeviewTitle.vue +8 -1
  67. package/src/components/style/{MenuWrapper.vue → StyleMenuWrapper.vue} +2 -1
  68. package/src/components/style/VcsFillMenu.vue +4 -4
  69. package/src/components/style/VcsImageMenu.vue +4 -4
  70. package/src/components/style/VcsStrokeMenu.vue +4 -4
  71. package/src/components/style/VcsTextMenu.vue +4 -4
  72. package/src/contentTree/LayerTree.vue +8 -46
  73. package/src/contentTree/LayerTree.vue.d.ts +1 -3
  74. package/src/contentTree/contentTreeCollection.d.ts +7 -0
  75. package/src/contentTree/contentTreeCollection.js +31 -10
  76. package/src/contentTree/contentTreeItem.d.ts +4 -4
  77. package/src/contentTree/contentTreeItem.js +2 -2
  78. package/src/contentTree/flightContentTreeItem.d.ts +8 -1
  79. package/src/contentTree/flightContentTreeItem.js +26 -3
  80. package/src/contentTree/groupContentTreeItem.d.ts +21 -0
  81. package/src/contentTree/groupContentTreeItem.js +32 -2
  82. package/src/contentTree/layerContentTreeItem.d.ts +8 -1
  83. package/src/contentTree/layerContentTreeItem.js +26 -4
  84. package/src/contentTree/layerGroupContentTreeItem.d.ts +6 -0
  85. package/src/contentTree/layerGroupContentTreeItem.js +27 -3
  86. package/src/contentTree/nodeContentTreeItem.d.ts +21 -0
  87. package/src/contentTree/nodeContentTreeItem.js +31 -2
  88. package/src/contentTree/obliqueCollectionContentTreeItem.d.ts +6 -0
  89. package/src/contentTree/obliqueCollectionContentTreeItem.js +22 -2
  90. package/src/contentTree/wmsChildContentTreeItem.d.ts +56 -0
  91. package/src/contentTree/wmsChildContentTreeItem.js +159 -0
  92. package/src/contentTree/wmsGroupContentTreeItem.d.ts +171 -0
  93. package/src/contentTree/wmsGroupContentTreeItem.js +619 -0
  94. package/src/featureInfo/BalloonComponent.vue +6 -6
  95. package/src/featureInfo/ClusterFeatureComponent.vue +47 -11
  96. package/src/featureInfo/ClusterFeatureComponent.vue.d.ts +1 -0
  97. package/src/featureInfo/MarkdownBalloonComponent.vue +3 -9
  98. package/src/featureInfo/MarkdownBalloonComponent.vue.d.ts +1 -11
  99. package/src/featureInfo/balloonFeatureInfoView.d.ts +3 -0
  100. package/src/featureInfo/balloonFeatureInfoView.js +78 -11
  101. package/src/featureInfo/balloonHelper.js +9 -13
  102. package/src/featureInfo/featureInfo.d.ts +32 -7
  103. package/src/featureInfo/featureInfo.js +192 -93
  104. package/src/featureInfo/markdownBalloonFeatureInfoView.d.ts +0 -6
  105. package/src/featureInfo/markdownBalloonFeatureInfoView.js +5 -14
  106. package/src/featureInfo/markdownFeatureInfoView.d.ts +2 -8
  107. package/src/featureInfo/markdownFeatureInfoView.js +6 -15
  108. package/src/i18n/de.d.ts +64 -50
  109. package/src/i18n/de.js +9 -0
  110. package/src/i18n/en.d.ts +64 -50
  111. package/src/i18n/en.js +9 -0
  112. package/src/legend/VcsLegend.vue +21 -2
  113. package/src/legend/VcsLegend.vue.d.ts +1 -0
  114. package/src/legend/legendHelper.d.ts +0 -13
  115. package/src/legend/legendHelper.js +3 -27
  116. package/src/manager/navbarManager.d.ts +14 -1
  117. package/src/manager/navbarManager.js +22 -2
  118. package/src/manager/toolbox/GroupToolboxComponent.vue +17 -3
  119. package/src/manager/toolbox/GroupToolboxComponent.vue.d.ts +1 -0
  120. package/src/manager/toolbox/SelectToolboxComponent.vue +17 -3
  121. package/src/manager/toolbox/SelectToolboxComponent.vue.d.ts +1 -0
  122. package/src/manager/toolbox/ToolboxManagerComponent.vue +45 -14
  123. package/src/manager/toolbox/ToolboxManagerComponent.vue.d.ts +9 -0
  124. package/src/manager/toolbox/toolboxManager.d.ts +2 -1
  125. package/src/manager/toolbox/toolboxManager.js +13 -1
  126. package/src/manager/window/WindowComponent.vue +3 -2
  127. package/src/manager/window/WindowComponentHeader.vue +9 -1
  128. package/src/manager/window/WindowComponentHeader.vue.d.ts +1 -0
  129. package/src/manager/window/WindowManager.vue +175 -30
  130. package/src/manager/window/WindowManager.vue.d.ts +5 -0
  131. package/src/manager/window/windowManager.d.ts +2 -2
  132. package/src/manager/window/windowManager.js +12 -10
  133. package/src/navigation/MapNavigation.vue +29 -19
  134. package/src/navigation/MapNavigation.vue.d.ts +1 -0
  135. package/src/notifier/NotifierComponent.vue +1 -0
  136. package/src/search/ResultsComponent.vue +44 -17
  137. package/src/search/ResultsComponent.vue.d.ts +11 -1
  138. package/src/search/SearchComponent.vue +60 -9
  139. package/src/search/SearchComponent.vue.d.ts +2 -0
  140. package/src/search/search.js +3 -16
  141. package/src/state.d.ts +2 -1
  142. package/src/state.js +2 -1
  143. package/src/uiConfig.d.ts +9 -0
  144. package/src/uiConfig.js +1 -0
  145. package/src/vuePlugins/vuetify.d.ts +4 -0
  146. package/src/vuePlugins/vuetify.js +49 -3
  147. package/dist/assets/ui-83514586.css +0 -1
  148. /package/dist/assets/{vue-f8b1b5f8.js → vue-71fd14e8.js} +0 -0
  149. /package/src/components/style/{MenuWrapper.vue.d.ts → StyleMenuWrapper.vue.d.ts} +0 -0
@@ -950,6 +950,11 @@
950
950
  "infoUrl": "https://vc.systems",
951
951
  "title": "contentTree.building.title"
952
952
  },
953
+ {
954
+ "name": "terrain",
955
+ "type": "LayerContentTreeItem",
956
+ "layerName": "GermanyBaseTerrain"
957
+ },
953
958
  {
954
959
  "name": "building.texturedBuildings",
955
960
  "layerName": "buildings",
@@ -1119,7 +1124,7 @@
1119
1124
  {
1120
1125
  "name": "reasonableLayerGroup",
1121
1126
  "type": "LayerGroupContentTreeItem",
1122
- "layerNames": ["buildings", "Bäume", "GermanyBaseTerrain.4"],
1127
+ "layerNames": ["buildings", "Bäume", "GermanyBaseTerrain"],
1123
1128
  "title": "Buildings - Trees - Terrain. A Layer Group Item",
1124
1129
  "availableStyles": [
1125
1130
  "MeasuredHeightGreen",
@@ -1150,8 +1155,7 @@
1150
1155
  }
1151
1156
  }
1152
1157
  ],
1153
- "maxZoom": 7,
1154
- "minZoom": 3,
1158
+
1155
1159
  "hideLevels": null,
1156
1160
  "properties:": {
1157
1161
  "attributions": {
@@ -5,7 +5,6 @@
5
5
  "type": "GeoJSONLayer",
6
6
  "name": "12de4200e2e76f756e06da59c07eae3a1760acdd",
7
7
  "activeOnStartup": true,
8
- "balloonHeightOffset": 0,
9
8
  "vectorProperties": {
10
9
  "altitudeMode": "relativeToGround",
11
10
  "heightAboveGround": 65
@@ -25,7 +24,7 @@
25
24
  "vectorClusterGroup": "clusterLayerOthers",
26
25
  "properties": {
27
26
  "title": "Grundschulen",
28
- "featureInfo": "tableAll",
27
+ "featureInfo": "genericBalloon",
29
28
  "attributions": [
30
29
  {
31
30
  "provider": "Senatsverwaltung für Bildung, Jugend und Familie",
@@ -38,7 +37,6 @@
38
37
  {
39
38
  "type": "GeoJSONLayer",
40
39
  "name": "b408b454472a5ce5dfb44bb57afe8da1baeeb6cf",
41
- "balloonHeightOffset": 0,
42
40
  "vectorProperties": {
43
41
  "altitudeMode": "relativeToGround",
44
42
  "heightAboveGround": 65
@@ -73,22 +71,15 @@
73
71
  {
74
72
  "type": "VectorClusterLayer",
75
73
  "name": "clusterLayerOthers",
76
- "showInContent": true,
77
- "defaultFeatureTemplate": "<%=name%>",
78
74
  "clusterDistance": 90,
79
75
  "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
76
  "scaleFactor": 0.125,
87
77
  "breaks": [2, 3, 4, 5, 10, 15, 25, 50, 100, 250, 500, 1000, 2000, 5000]
88
78
  },
89
- "heightAboveGround": 65,
90
- "altitudeMode": "relativeToGround",
91
- "url": ""
79
+ "vectorProperties": {
80
+ "altitudeMode": "relativeToGround",
81
+ "heightAboveGround": 65
82
+ }
92
83
  }
93
84
  ],
94
85
  "contentTree": [
@@ -3,25 +3,6 @@
3
3
  "_id": "dev",
4
4
  "description": "module containing dev configs and examples",
5
5
  "startingViewpointName": "potsdamer_platz",
6
- "i18n": [
7
- {
8
- "name": "dev",
9
- "de": {
10
- "layers": {
11
- "wmsLayerLaerm": {
12
- "title": "WMS Lärm Bayern"
13
- }
14
- }
15
- },
16
- "en": {
17
- "layers": {
18
- "wmsLayerLaerm": {
19
- "title": "WMS Noise Bavaria"
20
- }
21
- }
22
- }
23
- }
24
- ],
25
6
  "featureInfo": [
26
7
  {
27
8
  "type": "BalloonFeatureInfoView",
@@ -43,25 +24,13 @@
43
24
  {
44
25
  "type": "MarkdownBalloonFeatureInfoView",
45
26
  "name": "markdownFeatureInfo",
46
- "template": "# {{featureId}}\n- Altitude Mode: {{Altitude Mode}}\n [Link text Here](https://vc.systems/?id={{id}})",
27
+ "template": "# {{featureId}}\n- {{#t components.vectorProperties.altitudeMode}}: {{Altitude Mode}}\n [Link text Here](https://vc.systems/?id={{id}})\nCurrent Locale: {{ currentVcsAppLocale }}",
47
28
  "keyMapping": {
48
29
  "olcs_storeyNumber": "Storey Number",
49
30
  "olcs_storeyHeight": "Storey Height",
50
31
  "olcs_altitudeMode": "Altitude Mode"
51
32
  }
52
33
  },
53
- {
54
- "type": "BalloonFeatureInfoView",
55
- "name": "genericBalloonLaerm",
56
- "title": "Lärmkarte Bayern",
57
- "subtitle": "WMS Feature Info",
58
- "window": {
59
- "position": {
60
- "width": "200px",
61
- "maxHeight": "100px"
62
- }
63
- }
64
- },
65
34
  {
66
35
  "type": "TableFeatureInfoView",
67
36
  "name": "tableLink",
@@ -101,6 +70,26 @@
101
70
  }
102
71
  }
103
72
  ],
73
+ "styles": [
74
+ {
75
+ "type": "DeclarativeStyleItem",
76
+ "name": "streetStyle",
77
+ "declarativeStyle": {
78
+ "show": "true",
79
+ "color": "color('#784176')",
80
+ "strokeWidth": {
81
+ "conditions": [
82
+ ["${strassenkl} === '0'", "18"],
83
+ ["${strassenkl} === 'I'", "12"],
84
+ ["${strassenkl} === 'II'", "9"],
85
+ ["${strassenkl} === 'III'", "6"],
86
+ ["${strassenkl} === 'IV'", "2"],
87
+ ["true", "2"]
88
+ ]
89
+ }
90
+ }
91
+ }
92
+ ],
104
93
  "layers": [
105
94
  {
106
95
  "name": "testGeojsonVectorTile",
@@ -392,6 +381,55 @@
392
381
  ]
393
382
  }
394
383
  },
384
+ {
385
+ "name": "geojsonClassification",
386
+ "type": "GeoJSONLayer",
387
+ "features": [
388
+ {
389
+ "type": "Feature",
390
+ "properties": {
391
+ "title": "Polygon Bundestag"
392
+ },
393
+ "geometry": {
394
+ "type": "Polygon",
395
+ "coordinates": [
396
+ [
397
+ [13.377401890755296, 52.51939811240837, 31.981617368890852],
398
+ [13.375217214695466, 52.51942601210445, 34.79993872986513],
399
+ [13.375163996940483, 52.51788301808247, 34.527692201263896],
400
+ [13.37734866165336, 52.51785511755142, 34.49136397983607],
401
+ [13.377401890755296, 52.51939811240837, 31.981617368890852]
402
+ ]
403
+ ]
404
+ },
405
+ "id": "d5925529-505a-43bf-adb6-64a4dd043533",
406
+ "vcsMeta": {
407
+ "version": "2.1",
408
+ "style": {
409
+ "stroke": {
410
+ "color": [51, 153, 204, 1],
411
+ "width": 1.25
412
+ },
413
+ "fill": {
414
+ "color": [243, 2, 2, 0.84375]
415
+ }
416
+ }
417
+ }
418
+ }
419
+ ],
420
+ "projection": {
421
+ "epsg": 4326
422
+ },
423
+ "activeOnStartup": false,
424
+ "vectorProperties": {
425
+ "altitudeMode": "clampToGround",
426
+ "classificationType": "both"
427
+ },
428
+ "properties": {
429
+ "title": "GeoJSON Classification",
430
+ "featureInfo": "genericBalloon"
431
+ }
432
+ },
395
433
  {
396
434
  "type": "CzmlLayer",
397
435
  "name": "czmlPoint",
@@ -434,26 +472,16 @@
434
472
  }
435
473
  },
436
474
  {
437
- "name": "wmsLayerLaerm",
475
+ "name": "wmsStadtstruktur",
438
476
  "type": "WMSLayer",
439
- "url": "https://www.lfu.bayern.de/gdi/wms/laerm/hauptverkehrsstrassen",
440
- "datasourceId": "P7xfmLJ5zkFmT7hNQ",
477
+ "url": "https://gdi.berlin.de/services/wms/ua_stadtstruktur_2020",
441
478
  "activeOnStartup": false,
442
479
  "version": "1.3.0",
443
- "layers": "mroadbylden2022,lsemroadby2022",
444
- "parameters": "STYLE=default&TRANSPARENT=TRUE&format=image/png&transparent=true",
445
- "extent": {
446
- "coordinates": [8.7992, 47.156072, 14.055682, 50.670961],
447
- "projection": {
448
- "epsg": "4326"
449
- }
450
- },
480
+ "layers": "ua_stadtstruktur_2020",
481
+ "parameters": "TRANSPARENT=TRUE&format=image/png&transparent=true",
451
482
  "featureInfo": {
452
483
  "showFeature": true,
453
- "responseType": "application/geojson",
454
- "vectorProperties": {
455
- "extrudedHeight": 20
456
- },
484
+ "responseType": "application/json",
457
485
  "style": {
458
486
  "type": "VectorStyleItem",
459
487
  "stroke": {
@@ -465,12 +493,12 @@
465
493
  "tilingSchema": "geographic",
466
494
  "zIndex": 12,
467
495
  "properties": {
468
- "title": "layers.wmsLayerLaerm.title",
469
- "featureInfo": "genericBalloonLaerm",
496
+ "title": "WMS Stadtstruktur Berlin",
497
+ "featureInfo": "tableAll",
470
498
  "legend": [
471
499
  {
472
500
  "type": "ImageLegendItem",
473
- "src": "https://www.lfu.bayern.de/gdi/wms/laerm/hauptverkehrsstrassen?request=GetLegendGraphic%26version=1.3.0%26format=image/png%26layer=mroadbylden"
501
+ "src": "https://gdi.berlin.de/services/wms/ua_stadtstruktur_2020?service=WMS&version=1.3.0&request=GetLegendGraphic&format=image%2Fpng&width=500&height=875&layer=ua_stadtstruktur_2020"
474
502
  }
475
503
  ]
476
504
  }
@@ -482,7 +510,7 @@
482
510
  "activeOnStartup": false,
483
511
  "version": "1.3.0",
484
512
  "layers": "flughaefen,grenzuebergaenge,heliports,kilometrierungen_bab,seehaefen",
485
- "parameters": "STYLE=default&TRANSPARENT=TRUE&format=image/png&transparent=true",
513
+ "parameters": "TRANSPARENT=TRUE&format=image/png&transparent=true",
486
514
  "featureInfo": {
487
515
  "showFeature": true,
488
516
  "responseType": "application/json",
@@ -550,6 +578,45 @@
550
578
  }
551
579
  ]
552
580
  }
581
+ },
582
+
583
+ {
584
+ "name": "wmsTopplus",
585
+ "type": "WMSLayer",
586
+ "url": "https://sgx.geodatenzentrum.de/wms_topplus_open",
587
+ "activeOnStartup": false,
588
+ "version": "1.3.0",
589
+ "layers": "web",
590
+ "parameters": "TRANSPARENT=TRUE&format=image/png&transparent=true",
591
+ "tilingSchema": "geographic",
592
+ "zIndex": 13,
593
+ "properties": { "title": "WMS TopPlus Open" }
594
+ },
595
+ {
596
+ "name": "nasa",
597
+ "type": "WMSLayer",
598
+ "url": "https://maps.eatlas.org.au/maps/wms",
599
+ "activeOnStartup": false,
600
+ "version": "1.3.0",
601
+ "tilingSchema": "geographic",
602
+ "zIndex": 13,
603
+ "layers": "nesp3:GBR_NESP-TWQ-3.2.1-5.4_JCU_Seagrass_1984-2018_Site-surveys",
604
+ "parameters": "TRANSPARENT=TRUE&format=image/png&transparent=true&styles=GBR_NESP-TWQ-3-2-1_JCU_Seagrass_1984-2018_Depth",
605
+ "properties": { "title": "NASA WMS" }
606
+ },
607
+ {
608
+ "name": "FlatGeobufLayer",
609
+ "type": "FlatGeobufLayer",
610
+ "style": "streetStyle",
611
+ "url": "exampleData/flatGeobuf/berlin-classified-level-2.fgb",
612
+ "zIndex": 11,
613
+ "exclusiveGroups": ["streets"],
614
+ "projection": {
615
+ "epsg": 4326
616
+ },
617
+ "properties": {
618
+ "title": "Berlin Streets Class 0-II"
619
+ }
553
620
  }
554
621
  ],
555
622
  "flights": [
@@ -678,6 +745,11 @@
678
745
  "type": "FlightContentTreeItem",
679
746
  "tooltip": "This is a flight. Its flight 2, actually."
680
747
  },
748
+ {
749
+ "name": "geojsonClassification",
750
+ "layerName": "geojsonClassification",
751
+ "type": "LayerContentTreeItem"
752
+ },
681
753
  {
682
754
  "name": "geojson",
683
755
  "layerName": "testGeojson",
@@ -689,25 +761,72 @@
689
761
  "type": "LayerContentTreeItem"
690
762
  },
691
763
  {
692
- "name": "czmlPoint",
764
+ "name": "czml",
765
+ "type": "NodeContentTreeItem",
766
+ "disableIfChildrenDisabled": true
767
+ },
768
+ {
769
+ "name": "czml.czmlPoint",
770
+ "layerName": "czmlPoint",
771
+ "type": "LayerContentTreeItem",
772
+ "showWhenNotSupported": true
773
+ },
774
+ {
775
+ "name": "czml.czmlDynamicPoint",
776
+ "layerName": "czmlDynamicPoint",
777
+ "type": "LayerContentTreeItem",
778
+ "showWhenNotSupported": true
779
+ },
780
+ {
781
+ "name": "czml2",
782
+ "type": "NodeContentTreeItem"
783
+ },
784
+ {
785
+ "name": "czml2.czmlPoint",
693
786
  "layerName": "czmlPoint",
694
787
  "type": "LayerContentTreeItem"
695
788
  },
696
789
  {
697
- "name": "czmlDynamicPoint",
790
+ "name": "czml2.czmlDynamicPoint",
698
791
  "layerName": "czmlDynamicPoint",
699
792
  "type": "LayerContentTreeItem"
700
793
  },
701
794
  {
702
795
  "name": "wmsLayerPOI",
703
796
  "layerName": "wmsLayerPOI",
704
- "type": "LayerContentTreeItem"
797
+ "type": "WMSGroupContentTreeItem"
798
+ },
799
+ {
800
+ "name": "wmsTopplus",
801
+ "layerName": "wmsTopplus",
802
+ "type": "WMSGroupContentTreeItem",
803
+ "setWMSLayersExclusive": true,
804
+ "initOpen": true,
805
+ "showWhenNotSupported": true
705
806
  },
706
807
  {
707
- "name": "wmsLayerLaerm",
708
- "layerName": "wmsLayerLaerm",
808
+ "name": "nasa",
809
+ "layerName": "nasa",
810
+ "type": "WMSGroupContentTreeItem",
811
+ "initOpen": true,
812
+ "showWhenNotSupported": true,
813
+ "allowedWMSLayers": [
814
+ "nesp3:GBR_NESP-TWQ-3.2.1-5.4_JCU_Seagrass_1984-2018_Site-surveys",
815
+ "nesp5:GBR_NESP-TWQ-3.3.2-5.13_JCU_Diver-logger-sites",
816
+ "nesp3:GBR_NESP-TWQ-3.3.2_JCU_Fish-survey-sites",
817
+ "ea-be:World_Bright-Earth-e-Atlas-basemap"
818
+ ]
819
+ },
820
+ {
821
+ "name": "wmsStadtstruktur",
822
+ "layerName": "wmsStadtstruktur",
709
823
  "type": "LayerContentTreeItem"
710
824
  },
825
+ {
826
+ "name": "FlatGeobufLayers",
827
+ "type": "LayerContentTreeItem",
828
+ "layerName": "FlatGeobufLayer"
829
+ },
711
830
  {
712
831
  "name": "building.myTest",
713
832
  "type": "ContentTreeItem",
@@ -35,7 +35,8 @@
35
35
  "config/hello-world.config.json",
36
36
  "config/theming.config.json",
37
37
  "config/clipping.config.json",
38
- "config/cluster.config.json"
38
+ "config/cluster.config.json",
39
+ "config/vectorTile.config.json"
39
40
  ]
40
41
  }
41
42
  ]
@@ -1,15 +1,17 @@
1
1
  {
2
2
  "name": "SplashScreen Examples",
3
+ "_id": "splashscreen",
3
4
  "uiConfig": [
4
5
  {
5
6
  "name": "splashScreen",
6
7
  "value": {
7
- "name": "MyCustomScreen.name",
8
- "title": "MyCustomScreen.tooltip",
8
+ "name": "Splashscreen Example",
9
+ "title": "Splashscreen Example",
9
10
  "icon": "mdi-information-slab-circle-outline",
10
11
  "content": "![image](https://vc.systems/wp-content/uploads/2020/07/vcs_logo.png)\nSplash Screen Template\n-------------------\nErste Schritte\n-------------------\n\nDies ist ein <em> Beispieltext</em>, der Ihnen den Einstieg erleichtern soll. **Marked** wird verwendet, um Ihren Text <u>von Markdown nach HTML</u> zu konvertieren. Um mehr über die <u><em>korrekte Syntax</em></u>zu erfahren, besuchen Sie bitte diesen [Link](https://marked.js.org/demo/) für eine Demo. \n\nWie man Listen hinzufügt\n\n1. Punkt 1 einer Aufzählung\n2. Punkt 2 einer Aufzählung.\n\nWenn Sie Aufzählungen nicht mögen, wie wäre es mit Aufzählungspunkten? \n- Punkt 1: einer Liste mit Aufzählungspunkten. \n- Punkt 2: einer Aufzählungsliste.",
11
12
  "acceptInput": true,
12
- "menuEntry": false,
13
+ "menuEntry": true,
14
+ "enableDontShowAgain": true,
13
15
  "checkBoxText": "components.splashScreen.checkBoxText",
14
16
  "buttonTitle": "components.splashScreen.buttonTitle",
15
17
  "secondaryButtonTitle": "Hello World Callback",
@@ -24,13 +26,7 @@
24
26
  "type": "GoToViewpointCallback",
25
27
  "viewpoint": "alexanderplatz"
26
28
  }
27
- ],
28
- "position": {
29
- "width": "800px",
30
- "height": "500px",
31
- "maxWidth": "800px",
32
- "maxHeight": "500px"
33
- }
29
+ ]
34
30
  },
35
31
  "properties": {
36
32
  "title": "appConfigurator.editors.uiConfig.splashScreen"
@@ -50,7 +50,6 @@
50
50
  "type": "MVTTileProvider",
51
51
  "url": "https://www.virtualcitymap.de/datasource-data/BerlinFootprintsMVT/{z}/{x}/{y}.pbf"
52
52
  },
53
- "activeOnStartup": true,
54
53
  "debug": false,
55
54
  "renderer": "primitive",
56
55
  "exclusiveGroups": ["3D"],
@@ -65,6 +64,48 @@
65
64
  "tooltip": "OpenStreetMap Building Polygons",
66
65
  "availableStyles": ["Transparentbuildings"]
67
66
  }
67
+ },
68
+ {
69
+ "name": "berlinStreetsTiled",
70
+ "type": "VectorTileLayer",
71
+ "style": "streetStyle",
72
+ "minLevel": 10,
73
+ "zIndex": 11,
74
+ "tileProvider": {
75
+ "type": "FlatGeobufTileProvider",
76
+ "projection": {
77
+ "epsg": 4326
78
+ },
79
+ "levels": [
80
+ {
81
+ "level": 10,
82
+ "url": "exampleData/flatGeobuf/berlin-classified-level-0.fgb"
83
+ },
84
+ {
85
+ "level": 12,
86
+ "url": "exampleData/flatGeobuf/berlin-classified-level-1.fgb"
87
+ },
88
+ {
89
+ "level": 14,
90
+ "url": "exampleData/flatGeobuf/berlin-classified-level-2.fgb"
91
+ },
92
+ {
93
+ "level": 16,
94
+ "url": "exampleData/flatGeobuf/berlin-classified-level-3.fgb"
95
+ }
96
+ ]
97
+ },
98
+ "exclusiveGroups": ["streets"],
99
+ "properties": {
100
+ "title": "Berlin Streets (tiled)"
101
+ }
102
+ }
103
+ ],
104
+ "contentTree": [
105
+ {
106
+ "name": "flatGeobufLayers",
107
+ "type": "LayerContentTreeItem",
108
+ "layerName": "berlinStreetsTiled"
68
109
  }
69
110
  ]
70
111
  }