@vcmap/ui 6.3.5 → 6.3.7

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 (25) hide show
  1. package/config/base.config.json +22 -3
  2. package/config/concepts-show-case.config.json +4 -0
  3. package/dist/assets/{cesium-54ed57c9.js → cesium-a9fcdef3.js} +64804 -64777
  4. package/dist/assets/cesium.js +1 -1
  5. package/dist/assets/{core-1f683027.js → core-a6684686.js} +6371 -6330
  6. package/dist/assets/core-workers/panoramaImageWorker.js +1 -1
  7. package/dist/assets/core.js +1 -1
  8. package/dist/assets/ol.js +1 -1
  9. package/dist/assets/{ui-d660ba07.js → ui-130549f1.js} +4032 -4037
  10. package/dist/assets/ui.js +1 -1
  11. package/dist/assets/vue.js +1 -1
  12. package/dist/assets/{vuetify-bc604361.js → vuetify-6d0e90c9.js} +1 -1
  13. package/dist/assets/vuetify.js +1 -1
  14. package/package.json +3 -3
  15. package/plugins/@vcmap-show-case/tileset-feature-visibility/package.json +5 -0
  16. package/plugins/@vcmap-show-case/tileset-feature-visibility/src/TilesetFeatureVisibilityComponent.vue +349 -0
  17. package/plugins/@vcmap-show-case/tileset-feature-visibility/src/TilesetFeatureVisibilityInteraction.js +66 -0
  18. package/plugins/@vcmap-show-case/tileset-feature-visibility/src/index.js +135 -0
  19. package/plugins/package.json +4 -4
  20. package/src/vuePlugins/vuetify.js +2 -4
  21. /package/dist/assets/core-workers/{panoramaImageWorker.js-a8275fd9.js → panoramaImageWorker.js-1e5adc77.js} +0 -0
  22. /package/dist/assets/{ol-a164129d.js → ol-15bf8646.js} +0 -0
  23. /package/dist/assets/{ui-d660ba07.css → ui-130549f1.css} +0 -0
  24. /package/dist/assets/{vue-d940072f.js → vue-d93cd563.js} +0 -0
  25. /package/dist/assets/{vuetify-bc604361.css → vuetify-6d0e90c9.css} +0 -0
@@ -85,7 +85,8 @@
85
85
  },
86
86
  "style": {
87
87
  "buildingFunction": "Gebäudefunktion",
88
- "transparentBuildings": "Transparente Gebäude"
88
+ "transparentBuildings": "Transparente Gebäude",
89
+ "hideSmallBuildings": "Kleine Gebäude ausblenden"
89
90
  },
90
91
  "contentTree": {
91
92
  "building": {
@@ -115,7 +116,8 @@
115
116
  },
116
117
  "style": {
117
118
  "buildingFunction": "Building function",
118
- "transparentBuildings": "Transparent Buildings"
119
+ "transparentBuildings": "Transparent Buildings",
120
+ "hideSmallBuildings": "Hide small buildings"
119
121
  },
120
122
  "contentTree": {
121
123
  "building": {
@@ -593,6 +595,22 @@
593
595
  }
594
596
  ]
595
597
  }
598
+ },
599
+ {
600
+ "type": "DeclarativeStyleItem",
601
+ "name": "HideSmallBuildings",
602
+ "title": "Hide buildings < 30 m",
603
+ "declarativeStyle": {
604
+ "show": {
605
+ "conditions": [
606
+ ["${attributes.measuredHeight} === undefined", "true"],
607
+ ["${attributes.measuredHeight} < 30", "false"]
608
+ ]
609
+ }
610
+ },
611
+ "properties": {
612
+ "title": "style.hideSmallBuildings"
613
+ }
596
614
  }
597
615
  ],
598
616
  "featureInfo": [
@@ -788,7 +806,8 @@
788
806
  "ClassifiedbyRoofType",
789
807
  "BuildingFunction",
790
808
  "Transparentbuildings",
791
- "fruitStyle"
809
+ "fruitStyle",
810
+ "HideSmallBuildings"
792
811
  ],
793
812
  "clusterFeatureTitleProperty": "gml:name",
794
813
  "title": "Berlin - LOD2",
@@ -38,6 +38,10 @@
38
38
  {
39
39
  "name": "window-tester",
40
40
  "entry": "plugins/@vcmap-show-case/window-tester/index.js"
41
+ },
42
+ {
43
+ "name": "@vcmap-show-case/tileset-feature-visibility",
44
+ "entry": "plugins/@vcmap-show-case/tileset-feature-visibility/index.js"
41
45
  }
42
46
  ]
43
47
  }