@vcmap/ui 5.0.0-rc.10 → 5.0.0-rc.13

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 (165) hide show
  1. package/README.md +12 -5
  2. package/build/build.js +6 -3
  3. package/build/buildHelpers.js +12 -4
  4. package/build/buildPreview.js +7 -0
  5. package/build/getPluginProxies.js +4 -0
  6. package/config/aerowest.config.json +13 -3
  7. package/config/base.config.json +398 -219
  8. package/config/codes.config.json +397 -0
  9. package/config/dev.config.json +375 -1
  10. package/config/graphFeatureInfo.config.json +100 -0
  11. package/config/www.config.json +1232 -0
  12. package/dist/assets/{cesium.eb5667.js → cesium.21663e.js} +0 -0
  13. package/dist/assets/cesium.js +1 -1
  14. package/dist/assets/core.63242d.js +4 -0
  15. package/dist/assets/core.js +1 -1
  16. package/dist/assets/font/OFL.txt +93 -0
  17. package/dist/assets/font/TitilliumWeb-Regular.woff2 +0 -0
  18. package/dist/assets/{index.4ccd4433.js → index.44b91cfe.js} +1 -1
  19. package/dist/assets/{ol.ef03b1.js → ol.88ba9d.js} +0 -0
  20. package/dist/assets/ol.js +1 -1
  21. package/dist/assets/ui.3c2933.css +1 -0
  22. package/dist/assets/ui.3c2933.js +71 -0
  23. package/dist/assets/ui.js +1 -1
  24. package/dist/assets/vue.c897fc.js +9 -0
  25. package/dist/assets/vue.js +2 -1
  26. package/dist/assets/{vuetify.401a29.css → vuetify.147c3a.css} +1 -1
  27. package/dist/assets/{vuetify.401a29.js → vuetify.147c3a.js} +72 -72
  28. package/dist/assets/vuetify.js +2 -2
  29. package/dist/index.html +1 -5
  30. package/index.js +39 -5
  31. package/lib/vue.js +1 -0
  32. package/map.config.json +15 -6
  33. package/package.json +17 -8
  34. package/plugins/@vcmap/create-link/fallbackCreateLink.vue +71 -0
  35. package/plugins/@vcmap/create-link/index.js +83 -0
  36. package/plugins/@vcmap/create-link/package.json +6 -0
  37. package/plugins/@vcmap/pluginExample/index.js +2 -2
  38. package/plugins/@vcmap/pluginExample/pluginExampleComponent.vue +20 -3
  39. package/plugins/@vcmap/project-selector/ProjectSelectorComponent.vue +1 -1
  40. package/plugins/@vcmap/project-selector/index.js +1 -1
  41. package/plugins/@vcmap/project-selector/package.json +1 -2
  42. package/plugins/@vcmap/theme-changer/ThemeChangerComponent.vue +1 -1
  43. package/plugins/@vcmap/theme-changer/index.js +1 -1
  44. package/plugins/@vcmap/theme-changer/package.json +1 -2
  45. package/plugins/categoryTest/Categories.vue +89 -1
  46. package/plugins/categoryTest/Category.vue +1 -1
  47. package/plugins/example/index.js +10 -23
  48. package/plugins/simple-graph/README.md +51 -0
  49. package/plugins/simple-graph/SimpleGraphComponent.vue +70 -0
  50. package/plugins/simple-graph/index.js +17 -0
  51. package/plugins/simple-graph/package.json +11 -0
  52. package/plugins/simple-graph/simpleGraphView.js +76 -0
  53. package/plugins/test/editor.vue +1 -1
  54. package/plugins/test/index.js +76 -9
  55. package/plugins/test/toolbox-data.js +82 -57
  56. package/plugins/test/windowManagerExample.vue +1 -1
  57. package/src/actions/stateRefAction.js +2 -2
  58. package/src/actions/styleSelector.vue +1 -1
  59. package/src/application/Navbar.vue +13 -2
  60. package/src/application/VcsApp.vue +301 -116
  61. package/src/application/VcsMap.vue +1 -1
  62. package/src/application/VcsSettings.vue +1 -1
  63. package/src/application/vcsAppWrapper.vue +1 -0
  64. package/src/assets/font/OFL.txt +93 -0
  65. package/src/assets/font/TitilliumWeb-Regular.woff2 +0 -0
  66. package/src/components/form-inputs-controls/VcsCheckbox.vue +13 -0
  67. package/src/components/form-inputs-controls/VcsColorPicker.vue +1 -1
  68. package/src/components/form-inputs-controls/VcsRadio.vue +123 -0
  69. package/src/components/form-output/VcsFormattedNumber.vue +1 -1
  70. package/src/components/lists/VcsActionList.vue +22 -7
  71. package/src/components/lists/VcsTreeview.vue +4 -4
  72. package/src/components/lists/VcsTreeviewLeaf.vue +10 -3
  73. package/src/components/lists/VcsTreeviewSearchbar.vue +1 -2
  74. package/src/components/tables/VcsTable.vue +245 -0
  75. package/src/contentTree/LayerTree.vue +1 -1
  76. package/src/contentTree/contentTreeCollection.js +4 -4
  77. package/src/contentTree/contentTreeItem.js +9 -9
  78. package/src/contentTree/groupContentTreeItem.js +1 -1
  79. package/src/contentTree/layerContentTreeItem.js +15 -1
  80. package/src/contentTree/layerGroupContentTreeItem.js +21 -1
  81. package/src/contentTree/nodeContentTreeItem.js +1 -1
  82. package/src/featureInfo/AddressBalloonComponent.vue +47 -0
  83. package/src/featureInfo/BalloonComponent.vue +140 -0
  84. package/src/featureInfo/abstractFeatureInfoView.js +313 -0
  85. package/src/featureInfo/addressBalloonFeatureInfoView.js +118 -0
  86. package/src/featureInfo/balloonFeatureInfoView.js +151 -0
  87. package/src/featureInfo/balloonHelper.js +132 -0
  88. package/src/featureInfo/featureInfo.js +457 -0
  89. package/src/featureInfo/featureInfoInteraction.js +42 -0
  90. package/src/featureInfo/iframeFeatureInfoView.js +95 -0
  91. package/src/featureInfo/tableFeatureInfoView.js +106 -0
  92. package/src/i18n/de.js +26 -0
  93. package/src/i18n/en.js +26 -0
  94. package/src/i18n/i18nCollection.js +17 -0
  95. package/src/icons/+all.js +80 -0
  96. package/src/icons/ClippingHorizontalIcon.vue +7 -0
  97. package/src/icons/ClippingIcon.vue +7 -0
  98. package/src/icons/ClippingVerticalIcon.vue +7 -0
  99. package/src/icons/ColorPickerIcon.vue +7 -0
  100. package/src/icons/ComponentsIcon.vue +2 -2
  101. package/src/icons/DimensionsHouseIcon.vue +11 -9
  102. package/src/icons/EditIcon.vue +7 -0
  103. package/src/icons/GlobalTerrainIcon.vue +9 -0
  104. package/src/icons/GroundIcon.vue +18 -0
  105. package/src/icons/HideIcon.vue +12 -0
  106. package/src/icons/LogoutIcon.vue +7 -0
  107. package/src/icons/ObjectAttributeIcon.vue +2 -13
  108. package/src/icons/PedestrianIcon.vue +2 -3
  109. package/src/icons/PenIcon.vue +2 -9
  110. package/src/icons/PoiIcon.vue +5 -2
  111. package/src/icons/PointSelectIcon.vue +4 -2
  112. package/src/icons/QueryIcon.vue +6 -7
  113. package/src/icons/ScreenshotIcon.vue +16 -0
  114. package/src/icons/ShareIcon.vue +4 -16
  115. package/src/icons/SkipNextIcon.vue +3 -1
  116. package/src/icons/TerrainBoxIcon.vue +9 -0
  117. package/src/icons/ToolsIcon.vue +4 -30
  118. package/src/icons/UploadIcon.vue +2 -9
  119. package/src/icons/UserProfileIcon.vue +7 -0
  120. package/src/icons/UserShareIcon.vue +7 -0
  121. package/src/icons/VideoRecorderIcon.vue +5 -9
  122. package/src/icons/ViewpointFlightIcon.vue +11 -0
  123. package/src/icons/ViewpointIcon.vue +11 -0
  124. package/src/icons/Viewshed360Icon.vue +7 -0
  125. package/src/icons/ViewshedConeIcon.vue +7 -0
  126. package/src/icons/ViewshedIcon.vue +7 -0
  127. package/src/icons/WallIcon.vue +4 -9
  128. package/src/legend/legendHelper.js +193 -0
  129. package/src/legend/styleLegendItem.vue +129 -0
  130. package/src/legend/vcsLegend.vue +92 -0
  131. package/src/manager/buttonManager.js +7 -12
  132. package/src/manager/categoryManager/ComponentsManager.vue +30 -0
  133. package/src/manager/categoryManager/categoryManager.js +500 -0
  134. package/src/manager/contextMenu/contextMenuComponent.vue +43 -0
  135. package/src/manager/contextMenu/contextMenuInteraction.js +42 -0
  136. package/src/manager/contextMenu/contextMenuManager.js +197 -0
  137. package/src/manager/navbarManager.js +9 -9
  138. package/src/manager/toolbox/GroupToolboxComponent.vue +118 -0
  139. package/src/manager/toolbox/SelectToolboxComponent.vue +128 -0
  140. package/src/manager/toolbox/ToolboxManager.vue +116 -98
  141. package/src/manager/toolbox/toolboxManager.js +235 -86
  142. package/src/manager/window/WindowComponent.vue +1 -1
  143. package/src/manager/window/WindowManager.vue +5 -3
  144. package/src/manager/window/windowManager.js +118 -14
  145. package/src/navigation/mapNavigation.vue +3 -5
  146. package/src/navigation/overviewMap.js +28 -5
  147. package/src/navigation/vcsCompass.vue +1 -1
  148. package/src/pluginHelper.js +42 -10
  149. package/src/setup.js +0 -2
  150. package/src/state.js +256 -0
  151. package/src/styles/_theming.scss +0 -5
  152. package/src/styles/variables.scss +7 -0
  153. package/src/styles/vcsFont.scss +17 -0
  154. package/src/uiConfig.js +79 -0
  155. package/src/vcsUiApp.js +213 -22
  156. package/src/vuePlugins/vuetify.js +14 -4
  157. package/config/berlin.config.json +0 -510
  158. package/dist/assets/core.216494.js +0 -4
  159. package/dist/assets/ui.99a1a7.css +0 -1
  160. package/dist/assets/ui.99a1a7.js +0 -70
  161. package/dist/assets/vue-composition-api.c5aca1.js +0 -14
  162. package/dist/assets/vue-composition-api.js +0 -2
  163. package/dist/assets/vue.762edd.js +0 -9
  164. package/lib/vue-composition-api.js +0 -2
  165. package/src/manager/toolbox/ToolboxGroupComponent.vue +0 -128
@@ -12,6 +12,9 @@
12
12
  "layers": {
13
13
  "pointcloud": {
14
14
  "title": "Tiergarten"
15
+ },
16
+ "osmBuildingFootprints": {
17
+ "title": "OSM Gebäude Grundflächen"
15
18
  }
16
19
  },
17
20
  "contentTree": {
@@ -24,6 +27,9 @@
24
27
  "layers": {
25
28
  "pointcloud": {
26
29
  "title": "Zoological garden"
30
+ },
31
+ "osmBuildingFootprints": {
32
+ "title": "OSM Building Footprints"
27
33
  }
28
34
  },
29
35
  "contentTree": {
@@ -93,28 +99,51 @@
93
99
  ]
94
100
  }
95
101
  },
96
- "legend": [
97
- {
98
- "color": "#edf8e9",
99
- "title": "< 5 m"
100
- },
101
- {
102
- "color": "#bae4b3",
103
- "title": "< 15 m"
104
- },
105
- {
106
- "color": "#74c476",
107
- "title": "< 30 m"
108
- },
109
- {
110
- "color": "#31a354",
111
- "title": "< 65 m"
112
- },
113
- {
114
- "color": "#006d2c",
115
- "title": "> 65 m"
116
- }
117
- ]
102
+ "properties": {
103
+ "legend": [
104
+ {
105
+ "type": "StyleLegendItem",
106
+ "colNr": 1,
107
+ "rows": [
108
+ {
109
+ "type": "FillLegendRow",
110
+ "fill": {
111
+ "color": "#edf8e9"
112
+ },
113
+ "title": "< 5 m"
114
+ },
115
+ {
116
+ "type": "FillLegendRow",
117
+ "fill": {
118
+ "color": "#bae4b3"
119
+ },
120
+ "title": "< 15 m"
121
+ },
122
+ {
123
+ "type": "FillLegendRow",
124
+ "fill": {
125
+ "color": "#74c476"
126
+ },
127
+ "title": "< 30 m"
128
+ },
129
+ {
130
+ "type": "FillLegendRow",
131
+ "fill": {
132
+ "color": "#31a354"
133
+ },
134
+ "title": "< 65 m"
135
+ },
136
+ {
137
+ "type": "FillLegendRow",
138
+ "fill": {
139
+ "color": "#006d2c"
140
+ },
141
+ "title": "> 65 m"
142
+ }
143
+ ]
144
+ }
145
+ ]
146
+ }
118
147
  },
119
148
  {
120
149
  "name": "MeasuredHeightBrown",
@@ -151,28 +180,51 @@
151
180
  ]
152
181
  }
153
182
  },
154
- "legend": [
155
- {
156
- "color": "#ffffd4",
157
- "title": "< 5 m"
158
- },
159
- {
160
- "color": "#fed98e",
161
- "title": "< 15 m"
162
- },
163
- {
164
- "color": "#fe9929",
165
- "title": "< 30 m"
166
- },
167
- {
168
- "color": "#d95f0e",
169
- "title": "< 65 m"
170
- },
171
- {
172
- "color": "#993404",
173
- "title": "> 65 m"
174
- }
175
- ]
183
+ "properties": {
184
+ "legend": [
185
+ {
186
+ "type": "StyleLegendItem",
187
+ "colNr": 1,
188
+ "rows": [
189
+ {
190
+ "type": "FillLegendRow",
191
+ "fill": {
192
+ "color": "#ffffd4"
193
+ },
194
+ "title": "< 5 m"
195
+ },
196
+ {
197
+ "type": "FillLegendRow",
198
+ "fill": {
199
+ "color": "#fed98e"
200
+ },
201
+ "title": "< 15 m"
202
+ },
203
+ {
204
+ "type": "FillLegendRow",
205
+ "fill": {
206
+ "color": "#fe9929"
207
+ },
208
+ "title": "< 30 m"
209
+ },
210
+ {
211
+ "type": "FillLegendRow",
212
+ "fill": {
213
+ "color": "#d95f0e"
214
+ },
215
+ "title": "< 65 m"
216
+ },
217
+ {
218
+ "type": "FillLegendRow",
219
+ "fill": {
220
+ "color": "#993404"
221
+ },
222
+ "title": "> 65 m"
223
+ }
224
+ ]
225
+ }
226
+ ]
227
+ }
176
228
  },
177
229
  {
178
230
  "name": "MeasuredHeightBlue",
@@ -209,28 +261,51 @@
209
261
  ]
210
262
  }
211
263
  },
212
- "legend": [
213
- {
214
- "color": "#f1eef6",
215
- "title": "< 5 m"
216
- },
217
- {
218
- "color": "#bdc9e1",
219
- "title": "< 15 m"
220
- },
221
- {
222
- "color": "#74a9cf",
223
- "title": "< 30 m"
224
- },
225
- {
226
- "color": "#2b8cbe",
227
- "title": "< 65 m"
228
- },
229
- {
230
- "color": "#045a8d",
231
- "title": "> 65 m"
232
- }
233
- ]
264
+ "properties": {
265
+ "legend": [
266
+ {
267
+ "type": "StyleLegendItem",
268
+ "colNr": 1,
269
+ "rows": [
270
+ {
271
+ "type": "FillLegendRow",
272
+ "fill": {
273
+ "color": "#f1eef6"
274
+ },
275
+ "title": "< 5 m"
276
+ },
277
+ {
278
+ "type": "FillLegendRow",
279
+ "fill": {
280
+ "color": "#bdc9e1"
281
+ },
282
+ "title": "< 15 m"
283
+ },
284
+ {
285
+ "type": "FillLegendRow",
286
+ "fill": {
287
+ "color": "#74a9cf"
288
+ },
289
+ "title": "< 30 m"
290
+ },
291
+ {
292
+ "type": "FillLegendRow",
293
+ "fill": {
294
+ "color": "#2b8cbe"
295
+ },
296
+ "title": "< 65 m"
297
+ },
298
+ {
299
+ "type": "FillLegendRow",
300
+ "fill": {
301
+ "color": "#045a8d"
302
+ },
303
+ "title": "> 65 m"
304
+ }
305
+ ]
306
+ }
307
+ ]
308
+ }
234
309
  },
235
310
  {
236
311
  "type": "DeclarativeStyleItem",
@@ -310,68 +385,120 @@
310
385
  ]
311
386
  }
312
387
  },
313
- "legend": [
314
- {
315
- "color": "#91cf60",
316
- "title": "Flachdach"
317
- },
318
- {
319
- "color": "#fee08b",
320
- "title": "Pultdach"
321
- },
322
- {
323
- "color": "#8dd3c7",
324
- "title": "Versetztes Pultdach"
325
- },
326
- {
327
- "color": "#8dd3c7",
328
- "title": "Satteldach"
329
- },
330
- {
331
- "color": "#fc8d59",
332
- "title": "Walmdach"
333
- },
334
- {
335
- "color": "#ffffb3",
336
- "title": "Krüppelwalmdach"
337
- },
338
- {
339
- "color": "#bebada",
340
- "title": "Mansardendach"
341
- },
342
- {
343
- "color": "#ffffbf",
344
- "title": "Zeltdach"
345
- },
346
- {
347
- "color": "#fdb462",
348
- "title": "Kegeldach"
349
- },
350
- {
351
- "color": "#b3de69",
352
- "title": "Kuppeldach"
353
- },
354
- {
355
- "color": "#ecc34e",
356
- "title": "Sheddach"
357
- },
358
- {
359
- "color": "#fccde5",
360
- "title": "Bogendach"
361
- },
362
- {
363
- "color": "#d590b3",
364
- "title": "Turmdach"
365
- },
366
- {
367
- "color": "#888888",
368
- "title": "Mischform"
369
- },
370
- {
371
- "color": "#cccccc",
372
- "title": "Sonstiges"
373
- }
374
- ],
388
+ "properties": {
389
+ "legend": [
390
+ {
391
+ "type": "StyleLegendItem",
392
+ "rows": [
393
+ {
394
+ "type": "FillLegendRow",
395
+ "fill": {
396
+ "color": "#91cf60"
397
+ },
398
+ "title": "Flachdach"
399
+ },
400
+ {
401
+ "type": "FillLegendRow",
402
+ "fill": {
403
+ "color": "#fee08b"
404
+ },
405
+ "title": "Pultdach"
406
+ },
407
+ {
408
+ "type": "FillLegendRow",
409
+ "fill": {
410
+ "color": "#8dd3c7"
411
+ },
412
+ "title": "Versetztes Pultdach"
413
+ },
414
+ {
415
+ "type": "FillLegendRow",
416
+ "fill": {
417
+ "color": "#8dd3c7"
418
+ },
419
+ "title": "Satteldach"
420
+ },
421
+ {
422
+ "type": "FillLegendRow",
423
+ "fill": {
424
+ "color": "#fc8d59"
425
+ },
426
+ "title": "Walmdach"
427
+ },
428
+ {
429
+ "type": "FillLegendRow",
430
+ "fill": {
431
+ "color": "#ffffb3"
432
+ },
433
+ "title": "Krüppelwalmdach"
434
+ },
435
+ {
436
+ "type": "FillLegendRow",
437
+ "fill": {
438
+ "color": "#bebada"
439
+ },
440
+ "title": "Mansardendach"
441
+ },
442
+ {
443
+ "type": "FillLegendRow",
444
+ "fill": {
445
+ "color": "#ffffbf"
446
+ },
447
+ "title": "Zeltdach"
448
+ },
449
+ {
450
+ "type": "FillLegendRow",
451
+ "fill": {
452
+ "color": "#fdb462"
453
+ },
454
+ "title": "Kegeldach"
455
+ },
456
+ {
457
+ "type": "FillLegendRow",
458
+ "fill": {
459
+ "color": "#b3de69"
460
+ },
461
+ "title": "Kuppeldach"
462
+ },
463
+ {
464
+ "type": "FillLegendRow",
465
+ "fill": {
466
+ "color": "#ecc34e"
467
+ },
468
+ "title": "Sheddach"
469
+ },
470
+ {
471
+ "type": "FillLegendRow",
472
+ "fill": {
473
+ "color": "#fccde5"
474
+ },
475
+ "title": "Bogendach"
476
+ },
477
+ {
478
+ "type": "FillLegendRow",
479
+ "fill": {
480
+ "color": "#d590b3"
481
+ },
482
+ "title": "Turmdach"
483
+ },
484
+ {
485
+ "type": "FillLegendRow",
486
+ "fill": {
487
+ "color": "#888888"
488
+ },
489
+ "title": "Mischform"
490
+ },
491
+ {
492
+ "type": "FillLegendRow",
493
+ "fill": {
494
+ "color": "#cccccc"
495
+ },
496
+ "title": "Sonstiges"
497
+ }
498
+ ]
499
+ }
500
+ ]
501
+ },
375
502
  "name": "ClassifiedbyRoofType"
376
503
  },
377
504
  {
@@ -408,28 +535,51 @@
408
535
  ]
409
536
  }
410
537
  },
411
- "legend": [
412
- {
413
- "color": "#7fc97f",
414
- "title": "1121"
415
- },
416
- {
417
- "color": "#fdb462",
418
- "title": "1004"
419
- },
420
- {
421
- "color": "#fdc086",
422
- "title": "1799"
423
- },
424
- {
425
- "color": "#ffff99",
426
- "title": "1231"
427
- },
428
- {
429
- "color": "#cccccc",
430
- "title": "other function"
431
- }
432
- ],
538
+ "properties": {
539
+ "legend": [
540
+ {
541
+ "type": "StyleLegendItem",
542
+ "rows": [
543
+ {
544
+ "type": "FillLegendRow",
545
+ "fill": {
546
+ "color": "#7fc97f"
547
+ },
548
+ "title": "1121"
549
+ },
550
+ {
551
+ "type": "FillLegendRow",
552
+ "fill": {
553
+ "color": "#fdb462"
554
+ },
555
+ "title": "1004"
556
+ },
557
+ {
558
+ "type": "FillLegendRow",
559
+ "fill": {
560
+ "color": "#fdc086"
561
+ },
562
+ "title": "1799"
563
+ },
564
+ {
565
+ "type": "FillLegendRow",
566
+ "fill": {
567
+ "color": "#ffff99"
568
+ },
569
+ "title": "1231"
570
+ },
571
+ {
572
+ "type": "FillLegendRow",
573
+ "fill": {
574
+ "color": "#cccccc"
575
+ },
576
+ "title": "other function"
577
+ }
578
+
579
+ ]
580
+ }
581
+ ]
582
+ },
433
583
  "name": "BuildingFunction"
434
584
  },
435
585
  {
@@ -447,12 +597,50 @@
447
597
  ]
448
598
  }
449
599
  },
450
- "legend": [
451
- {
452
- "color": "#cccccc",
453
- "title": "Transparent buildings"
600
+ "properties": {
601
+ "legend": [
602
+ {
603
+ "type": "StyleLegendItem",
604
+ "rows": [
605
+ {
606
+ "type": "FillLegendRow",
607
+ "fill": {
608
+ "color": "#cccccc"
609
+ },
610
+ "title": "Transparent buildings"
611
+ }
612
+ ]
613
+ }
614
+ ]
615
+ }
616
+ }
617
+ ],
618
+ "featureInfo": [
619
+ {
620
+ "type": "TableFeatureInfoView",
621
+ "name": "tableAll",
622
+ "keyMapping": {
623
+ "roofType": "codeLists.keys.roofType",
624
+ "function": "codeLists.keys.function"
625
+ },
626
+ "valueMapping": {
627
+ "roofType": "codeLists.values.roofType.${value}",
628
+ "function": {
629
+ "1000": "codeLists.values.function.1000",
630
+ "1111": "myOwnMapping1111"
454
631
  }
455
- ]
632
+ }
633
+ },
634
+ {
635
+ "type": "TableFeatureInfoView",
636
+ "name": "filteredTable",
637
+ "attributeKeys": ["gml:name", "function"],
638
+ "keyMapping": {
639
+ "function": "codeLists.keys.function"
640
+ },
641
+ "valueMapping": {
642
+ "function": "codeLists.values.function.${value}"
643
+ }
456
644
  }
457
645
  ],
458
646
  "maps": [
@@ -487,7 +675,7 @@
487
675
  {
488
676
  "type": "CesiumTilesetLayer",
489
677
  "name": "mesh_surface",
490
- "url": "https://a.3d.blc.shc.eu/WAB/base_layer/cesium_mesh/",
678
+ "url": "https://a.3d.blc.shc.eu/WAB/base_layer/cesium_mesh_2020/",
491
679
  "activeOnStartup": false,
492
680
  "allowPicking": false,
493
681
  "screenSpaceError": 16,
@@ -498,49 +686,37 @@
498
686
  "copyright": {
499
687
  "provider": "Berlin Partner für Wirtschaft und Technologie",
500
688
  "url": "https://www.berlin-partner.de",
501
- "year": "2019"
689
+ "year": "2020"
502
690
  },
503
691
  "exclusiveGroups": [
504
692
  "bldg"
505
- ]
693
+ ],
694
+ "properties": {
695
+ "title": "3D-Mesh 2020"
696
+ }
506
697
  },
507
698
  {
508
- "name": "buildings",
509
- "url": "https://berlin.virtualcitymap.de/datasource-data/698513e2-a34c-4f38-bb93-629ff4c9e0c0",
510
699
  "type": "CesiumTilesetLayer",
511
- "datasourceId": "utxPghp6jfG6oZakL",
700
+ "name": "buildings",
701
+ "url": "https://www.virtualcitymap.de/datasource-data/698513e2-a34c-4f38-bb93-629ff4c9e0c0",
512
702
  "activeOnStartup": false,
513
- "allowPicking": true,
514
703
  "screenSpaceError": 16,
515
704
  "screenSpaceErrorMobile": 32,
516
- "hiddenObjectIds": [],
517
- "copyright": {
518
- "provider": "Berlin Partner für Wirtschaft und Technologie GmbH ",
519
- "url": "http://www.businesslocationcenter.de/downloadportal",
520
- "year": "2019"
521
- },
522
705
  "exclusiveGroups": [
523
706
  "bldg"
524
707
  ],
525
708
  "properties": {
526
- "title": "textured Buildings"
709
+ "title": "Gebäude texturiert 2013",
710
+ "featureInfo": "filteredTable"
527
711
  }
528
712
  },
529
713
  {
530
- "name": "buildings_untextured",
531
- "url": "https://berlin.virtualcitymap.de/datasource-data/3c2a32d3-633c-462d-b79c-7215dcfbc44f",
532
714
  "type": "CesiumTilesetLayer",
533
- "datasourceId": "9eRDxjbxHQzE9XiES",
715
+ "name": "buildings_untextured",
716
+ "url": "https://www.virtualcitymap.de/datasource-data/72fa3c14-03bc-4c26-a4ac-8c6dec37e65a/tileset.json",
534
717
  "activeOnStartup": true,
535
- "allowPicking": true,
536
718
  "screenSpaceError": 16,
537
719
  "screenSpaceErrorMobile": 32,
538
- "hiddenObjectIds": [],
539
- "copyright": {
540
- "provider": "Berlin Partner für Wirtschaft und Technologie GmbH ",
541
- "url": "http://www.businesslocationcenter.de/downloadportal",
542
- "year": ""
543
- },
544
720
  "exclusiveGroups": [
545
721
  "bldg"
546
722
  ],
@@ -553,7 +729,29 @@
553
729
  "BuildingFunction",
554
730
  "Transparentbuildings"
555
731
  ],
556
- "title": "untextured Buildings"
732
+ "title": "Berlin - LOD2",
733
+ "featureInfo": "tableAll"
734
+ }
735
+ },
736
+ {
737
+ "name": "osmBuildingFootprints",
738
+ "type": "VectorTileLayer",
739
+ "minLevel": 15,
740
+ "maxLevel": 21,
741
+ "zIndex": 11,
742
+ "tileProvider": {
743
+ "baseLevels": [
744
+ 14
745
+ ],
746
+ "idProperty": "osm_id",
747
+ "useSpatialIndex": false,
748
+ "type": "MVTTileProvider",
749
+ "url": "https://www.virtualcitymap.de/datasource-data/BerlinFootprintsMVT/{z}/{x}/{y}.pbf"
750
+ },
751
+ "activeOnStartup": false,
752
+ "properties": {
753
+ "featureInfo": "tableAll",
754
+ "title": "layers.osmBuildingFootprints.title"
557
755
  }
558
756
  },
559
757
  {
@@ -603,7 +801,7 @@
603
801
  "datasourceId": "2jEtgBemjJaSNx3AH",
604
802
  "activeOnStartup": true,
605
803
  "layer": "osm",
606
- "style": "default",
804
+ "wmtsStyle": "default",
607
805
  "format": "image/png",
608
806
  "tileMatrixSetID": "osm_grid",
609
807
  "tileMatrixPrefix": "",
@@ -638,56 +836,28 @@
638
836
  }
639
837
  },
640
838
  {
641
- "name": "terrain_v3.4",
642
- "url": "https://berlin.virtualcitymap.de/datasource-data/5d2c8614-d474-442d-8975-c2b4a4c0ae94",
643
839
  "type": "TerrainLayer",
644
- "datasourceId": "CQHSNBZDTkjLLh8Qr",
840
+ "name": "GermanyBaseTerrain",
841
+ "url": "https://www.virtualcitymap.de/datasource-data/globalterrain_5_9",
645
842
  "activeOnStartup": true,
646
843
  "requestVertexNormals": true,
647
- "properties": {
648
- "title": "Terrain"
649
- }
650
- },
651
- {
652
- "type": "PointCloudLayer",
653
- "name": "pointcloud",
654
- "activeOnStartup": false,
655
- "datasourceId": "g9rXAY6pu2tfNmWf3",
656
- "url": "https://berlin.virtualcitymap.de/datasource-data/Open-Data-Berlin/tiergarten/tileset.json",
657
- "copyright": {
658
- "provider": "Senatsverwaltung für Wirtschaft, Technologie und Forschung. Geodaten Herstellung gefördert durch den Europäischen Fonds für Regionale Entwicklung (EFRE)",
659
- "url": "http://www.berlin.de/wirtschaftssenat"
660
- },
661
- "screenSpaceError": 20,
662
- "screenSpaceErrorMobile": 32,
663
- "pointSize": 1.6,
664
844
  "exclusiveGroups": [
665
- "pointcloud"
845
+ "terrain"
666
846
  ],
667
847
  "properties": {
668
- "defaultViewpoint": "pointcloud",
669
- "title": "layers.pointcloud.title"
848
+ "title": "Deutschland Gelände"
670
849
  }
671
850
  },
672
851
  {
673
- "name": "Bäume",
674
- "url": "https://berlin.virtualcitymap.de/datasource-data/Open-Data-Berlin/trees_i3dm/tileset.json",
675
852
  "type": "CesiumTilesetLayer",
676
- "datasourceId": "YXcidK4ijYFB2DhPm",
853
+ "name": "Bäume",
854
+ "url": "https://www.virtualcitymap.de/datasource-data/f764ffb4-723d-429f-b797-5ca4c1061201/tileset.json",
677
855
  "activeOnStartup": false,
678
- "allowPicking": true,
679
856
  "screenSpaceError": 16,
680
857
  "screenSpaceErrorMobile": 32,
681
- "copyright": {
682
- "provider": "",
683
- "url": "",
684
- "year": ""
685
- },
686
- "exclusiveGroups": [
687
- "tree"
688
- ],
689
858
  "properties": {
690
- "title": "Trees"
859
+ "title": "Sommerbäume",
860
+ "featureInfo": "tableTrees"
691
861
  }
692
862
  }
693
863
  ],
@@ -807,7 +977,7 @@
807
977
  {
808
978
  "name": "baseMap.terrain",
809
979
  "type": "LayerContentTreeItem",
810
- "layerName": "terrain_v3.4"
980
+ "layerName": "GermanyBaseTerrain.4"
811
981
  },
812
982
  {
813
983
  "name": "baseMap.openStreetMap",
@@ -853,6 +1023,11 @@
853
1023
  "layerName": "buildings_untextured",
854
1024
  "type": "LayerContentTreeItem"
855
1025
  },
1026
+ {
1027
+ "name": "building.osmBuildingFootprints",
1028
+ "layerName": "osmBuildingFootprints",
1029
+ "type": "LayerContentTreeItem"
1030
+ },
856
1031
  {
857
1032
  "name": "building.meshSurface",
858
1033
  "layerName": "mesh_surface",
@@ -945,7 +1120,7 @@
945
1120
  "layerNames": [
946
1121
  "buildings",
947
1122
  "Bäume",
948
- "terrain_v3.4"
1123
+ "GermanyBaseTerrain.4"
949
1124
  ],
950
1125
  "title": "Buildings - Trees - Terrain"
951
1126
  },
@@ -986,6 +1161,10 @@
986
1161
  {
987
1162
  "name": "@vcmap/theme-changer",
988
1163
  "entry": "plugins/@vcmap/theme-changer/index.js"
1164
+ },
1165
+ {
1166
+ "name": "@vcmap/create-link",
1167
+ "entry": "plugins/@vcmap/create-link/index.js"
989
1168
  }
990
1169
  ]
991
1170
  }