@vcmap/ui 5.0.0-rc.17 → 5.0.0-rc.20
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/README.md +6 -6
- package/build/build.js +2 -2
- package/build/buildCesium.js +3 -3
- package/build/buildHelpers.js +2 -1
- package/config/base.config.json +0 -4
- package/config/dev.config.json +35 -14
- package/config/www.config.json +752 -123
- package/dist/assets/cesium/Workers/ArcType-ce2e50ab.js +37 -0
- package/dist/assets/cesium/Workers/AttributeCompression-b646d393.js +716 -0
- package/dist/assets/cesium/Workers/AxisAlignedBoundingBox-ff186ccc.js +258 -0
- package/dist/assets/cesium/Workers/BoundingRectangle-be5924f4.js +369 -0
- package/dist/assets/cesium/Workers/BoxGeometry-12eeccaf.js +884 -0
- package/dist/assets/cesium/Workers/Check-666ab1a0.js +290 -0
- package/dist/assets/cesium/Workers/Color-a84038cb.js +2262 -0
- package/dist/assets/cesium/Workers/ComponentDatatype-f7b11d02.js +341 -0
- package/dist/assets/cesium/Workers/CoplanarPolygonGeometryLibrary-3272c1b3.js +132 -0
- package/dist/assets/cesium/Workers/CorridorGeometryLibrary-0170e093.js +498 -0
- package/dist/assets/cesium/Workers/CylinderGeometry-7c5da648.js +467 -0
- package/dist/assets/cesium/Workers/CylinderGeometryLibrary-372c07d8.js +63 -0
- package/dist/assets/cesium/Workers/EllipseGeometry-797d580e.js +1304 -0
- package/dist/assets/cesium/Workers/EllipseGeometryLibrary-2939e1dc.js +366 -0
- package/dist/assets/cesium/Workers/EllipseOutlineGeometry-8b50870f.js +443 -0
- package/dist/assets/cesium/Workers/EllipsoidGeodesic-98c62a56.js +520 -0
- package/dist/assets/cesium/Workers/EllipsoidGeometry-21c0e3a5.js +637 -0
- package/dist/assets/cesium/Workers/EllipsoidOutlineGeometry-eff247c8.js +454 -0
- package/dist/assets/cesium/Workers/EllipsoidRhumbLine-19756602.js +741 -0
- package/dist/assets/cesium/Workers/EllipsoidTangentPlane-214683dc.js +373 -0
- package/dist/assets/cesium/Workers/EncodedCartesian3-81f70735.js +171 -0
- package/dist/assets/cesium/Workers/FrustumGeometry-ac42a6d9.js +2512 -0
- package/dist/assets/cesium/Workers/GeometryAttribute-7d6f1732.js +619 -0
- package/dist/assets/cesium/Workers/GeometryAttributes-f06a2792.js +91 -0
- package/dist/assets/cesium/Workers/GeometryInstance-451dc1cd.js +121 -0
- package/dist/assets/cesium/Workers/GeometryOffsetAttribute-04332ce7.js +16 -0
- package/dist/assets/cesium/Workers/GeometryPipeline-ce4339ed.js +3690 -0
- package/dist/assets/cesium/Workers/IndexDatatype-a55ceaa1.js +200 -0
- package/dist/assets/cesium/Workers/IntersectionTests-f6e6bd8a.js +1836 -0
- package/dist/assets/cesium/Workers/Math-2dbd6b93.js +1330 -0
- package/dist/assets/cesium/Workers/Matrix2-13178034.js +7086 -0
- package/dist/assets/cesium/Workers/Matrix3-315394f6.js +4283 -0
- package/dist/assets/cesium/Workers/OrientedBoundingBox-04920dc7.js +1257 -0
- package/dist/assets/cesium/Workers/Plane-900aa728.js +309 -0
- package/dist/assets/cesium/Workers/PolygonGeometryLibrary-a8680d96.js +1074 -0
- package/dist/assets/cesium/Workers/PolygonPipeline-844aab0a.js +1345 -0
- package/dist/assets/cesium/Workers/PolylinePipeline-32f36d2a.js +573 -0
- package/dist/assets/cesium/Workers/PolylineVolumeGeometryLibrary-a510d657.js +781 -0
- package/dist/assets/cesium/Workers/PrimitivePipeline-ba38434a.js +966 -0
- package/dist/assets/cesium/Workers/RectangleGeometryLibrary-bdba697e.js +280 -0
- package/dist/assets/cesium/Workers/RuntimeError-06c93819.js +68 -0
- package/dist/assets/cesium/Workers/TerrainEncoding-833187da.js +1227 -0
- package/dist/assets/cesium/Workers/Transforms-40229881.js +14696 -0
- package/dist/assets/cesium/Workers/VertexFormat-6b480673.js +312 -0
- package/dist/assets/cesium/Workers/WallGeometryLibrary-919eed92.js +211 -0
- package/dist/assets/cesium/Workers/WebGLConstants-a8cc3e8c.js +620 -0
- package/dist/assets/cesium/Workers/WebMercatorProjection-13a90d41.js +151 -0
- package/dist/assets/cesium/Workers/arrayRemoveDuplicates-c2038105.js +129 -0
- package/dist/assets/cesium/Workers/cesiumWorkerBootstrapper.js +1336 -4
- package/dist/assets/cesium/Workers/combine-ca22a614.js +82 -0
- package/dist/assets/cesium/Workers/combineGeometry.js +17 -25
- package/dist/assets/cesium/Workers/createBoxGeometry.js +12 -25
- package/dist/assets/cesium/Workers/createBoxOutlineGeometry.js +313 -25
- package/dist/assets/cesium/Workers/createCircleGeometry.js +213 -25
- package/dist/assets/cesium/Workers/createCircleOutlineGeometry.js +160 -25
- package/dist/assets/cesium/Workers/createCoplanarPolygonGeometry.js +586 -25
- package/dist/assets/cesium/Workers/createCoplanarPolygonOutlineGeometry.js +236 -25
- package/dist/assets/cesium/Workers/createCorridorGeometry.js +1407 -25
- package/dist/assets/cesium/Workers/createCorridorOutlineGeometry.js +603 -25
- package/dist/assets/cesium/Workers/createCylinderGeometry.js +12 -25
- package/dist/assets/cesium/Workers/createCylinderOutlineGeometry.js +265 -25
- package/dist/assets/cesium/Workers/createEllipseGeometry.js +14 -25
- package/dist/assets/cesium/Workers/createEllipseOutlineGeometry.js +14 -25
- package/dist/assets/cesium/Workers/createEllipsoidGeometry.js +12 -25
- package/dist/assets/cesium/Workers/createEllipsoidOutlineGeometry.js +15 -25
- package/dist/assets/cesium/Workers/createFrustumGeometry.js +12 -25
- package/dist/assets/cesium/Workers/createFrustumOutlineGeometry.js +251 -25
- package/dist/assets/cesium/Workers/createGeometry.js +55 -25
- package/dist/assets/cesium/Workers/createGroundPolylineGeometry.js +2134 -25
- package/dist/assets/cesium/Workers/createPlaneGeometry.js +250 -25
- package/dist/assets/cesium/Workers/createPlaneOutlineGeometry.js +115 -25
- package/dist/assets/cesium/Workers/createPolygonGeometry.js +1420 -25
- package/dist/assets/cesium/Workers/createPolygonOutlineGeometry.js +683 -25
- package/dist/assets/cesium/Workers/createPolylineGeometry.js +571 -25
- package/dist/assets/cesium/Workers/createPolylineVolumeGeometry.js +411 -25
- package/dist/assets/cesium/Workers/createPolylineVolumeOutlineGeometry.js +301 -25
- package/dist/assets/cesium/Workers/createRectangleGeometry.js +1476 -25
- package/dist/assets/cesium/Workers/createRectangleOutlineGeometry.js +535 -25
- package/dist/assets/cesium/Workers/createSimplePolylineGeometry.js +458 -25
- package/dist/assets/cesium/Workers/createSphereGeometry.js +123 -25
- package/dist/assets/cesium/Workers/createSphereOutlineGeometry.js +126 -25
- package/dist/assets/cesium/Workers/createTaskProcessorWorker.js +127 -25
- package/dist/assets/cesium/Workers/createVectorTileClampedPolylines.js +535 -25
- package/dist/assets/cesium/Workers/createVectorTileGeometries.js +445 -25
- package/dist/assets/cesium/Workers/createVectorTilePoints.js +79 -25
- package/dist/assets/cesium/Workers/createVectorTilePolygons.js +406 -25
- package/dist/assets/cesium/Workers/createVectorTilePolylines.js +254 -25
- package/dist/assets/cesium/Workers/createVerticesFromGoogleEarthEnterpriseBuffer.js +640 -25
- package/dist/assets/cesium/Workers/createVerticesFromHeightmap.js +2711 -27
- package/dist/assets/cesium/Workers/createVerticesFromQuantizedTerrainMesh.js +994 -25
- package/dist/assets/cesium/Workers/createWallGeometry.js +623 -25
- package/dist/assets/cesium/Workers/createWallOutlineGeometry.js +432 -25
- package/dist/assets/cesium/Workers/decodeDraco.js +381 -25
- package/dist/assets/cesium/Workers/decodeGoogleEarthEnterprisePacket.js +3687 -25
- package/dist/assets/cesium/Workers/decodeI3S.js +1040 -0
- package/dist/assets/cesium/Workers/defaultValue-0a909f67.js +51 -0
- package/dist/assets/cesium/Workers/package.js +2 -2
- package/dist/assets/cesium/Workers/transcodeKTX2.js +1516 -25
- package/dist/assets/cesium/Workers/transferTypedArrayTest.js +18 -2
- package/dist/assets/cesium/Workers/upsampleQuantizedTerrainMesh.js +1023 -25
- package/dist/assets/{cesium.41de56.js → cesium.adbd45.js} +112161 -108735
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core.af84e3.js → core.60e74d.js} +1616 -1629
- package/dist/assets/core.f198cf.js +15993 -0
- package/dist/assets/core.js +1 -1
- package/dist/assets/{index.5b773cad.js → index.884a53ef.js} +1 -1
- package/dist/assets/{ol.5c7490.js → ol.c6ff35.js} +6992 -6972
- package/dist/assets/ol.dbd604.js +44299 -0
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui.bf504d.css +1 -0
- package/dist/assets/{ui.dffe32.js → ui.bf504d.js} +6171 -6821
- package/dist/assets/ui.js +1 -1
- package/dist/assets/{vue.25da17.js → vue.75b819.js} +0 -0
- package/dist/assets/vue.a831f1.js +4675 -0
- package/dist/assets/vue.js +2 -2
- package/dist/assets/{vuetify.e4ece7.css → vuetify.0d7360.css} +0 -0
- package/dist/assets/{vuetify.e4ece7.js → vuetify.0d7360.js} +1 -1
- package/dist/assets/vuetify.js +2 -2
- package/dist/index.html +1 -1
- package/index.js +2 -1
- package/lib/cesium.js +1 -1
- package/package.json +3 -4
- package/plugins/{simple-graph → @vcmap/simple-graph}/README.md +1 -1
- package/plugins/{simple-graph → @vcmap/simple-graph}/SimpleGraphComponent.vue +0 -0
- package/plugins/{simple-graph → @vcmap/simple-graph}/index.js +0 -0
- package/plugins/{simple-graph → @vcmap/simple-graph}/package.json +0 -0
- package/plugins/{simple-graph → @vcmap/simple-graph}/simpleGraphView.js +0 -0
- package/plugins/@vcmap-show-case/README.md +20 -0
- package/plugins/{buttonExamples/ButtonExamples.vue → @vcmap-show-case/buttons-example/ButtonsExample.vue} +19 -1
- package/plugins/@vcmap-show-case/buttons-example/README.md +4 -0
- package/plugins/{buttonExamples → @vcmap-show-case/buttons-example}/index.js +16 -8
- package/plugins/@vcmap-show-case/buttons-example/package.json +5 -0
- package/plugins/{categoryTest → @vcmap-show-case/category-tester}/Categories.vue +7 -6
- package/plugins/{categoryTest → @vcmap-show-case/category-tester}/Category.vue +4 -3
- package/plugins/@vcmap-show-case/category-tester/README.md +3 -0
- package/plugins/{categoryTest → @vcmap-show-case/category-tester}/index.js +12 -4
- package/plugins/@vcmap-show-case/category-tester/package.json +5 -0
- package/plugins/@vcmap-show-case/config-editor/README.md +3 -0
- package/plugins/{test → @vcmap-show-case/config-editor}/editor.vue +0 -0
- package/plugins/@vcmap-show-case/config-editor/index.js +47 -0
- package/plugins/@vcmap-show-case/config-editor/package.json +5 -0
- package/plugins/@vcmap-show-case/context-menu-tester/README.md +3 -0
- package/plugins/@vcmap-show-case/context-menu-tester/index.js +33 -0
- package/plugins/@vcmap-show-case/context-menu-tester/package.json +5 -0
- package/plugins/{@vcmap/pluginExample/pluginExampleComponent.vue → @vcmap-show-case/form-inputs-example/FormInputsExample.vue} +14 -13
- package/plugins/@vcmap-show-case/form-inputs-example/README.md +4 -0
- package/plugins/@vcmap-show-case/form-inputs-example/config.json +5 -0
- package/plugins/{@vcmap/pluginExample → @vcmap-show-case/form-inputs-example}/exampleActions.js +1 -1
- package/plugins/{@vcmap/pluginExample → @vcmap-show-case/form-inputs-example}/index.js +23 -22
- package/plugins/@vcmap-show-case/form-inputs-example/package.json +5 -0
- package/plugins/{@vcmap/pluginExample → @vcmap-show-case/form-inputs-example}/validation.js +0 -0
- package/plugins/@vcmap-show-case/icons-example/README.md +5 -0
- package/plugins/@vcmap-show-case/icons-example/allIconsComponent.vue +51 -0
- package/plugins/@vcmap-show-case/icons-example/index.js +44 -0
- package/plugins/@vcmap-show-case/icons-example/package.json +5 -0
- package/plugins/{test/testList.vue → @vcmap-show-case/list-example/ListExample.vue} +1 -1
- package/plugins/@vcmap-show-case/list-example/README.md +3 -0
- package/plugins/@vcmap-show-case/list-example/index.js +44 -0
- package/plugins/@vcmap-show-case/list-example/package.json +5 -0
- package/plugins/@vcmap-show-case/notifier-tester/README.md +3 -0
- package/plugins/{notifier → @vcmap-show-case/notifier-tester}/index.js +11 -6
- package/plugins/{notifier → @vcmap-show-case/notifier-tester}/notifierTester.vue +0 -0
- package/plugins/@vcmap-show-case/notifier-tester/package.json +5 -0
- package/plugins/@vcmap-show-case/textfields-example/README.md +3 -0
- package/plugins/{example/mySuperComponent.vue → @vcmap-show-case/textfields-example/TextfieldsExample.vue} +1 -7
- package/plugins/{example → @vcmap-show-case/textfields-example}/index.js +58 -62
- package/plugins/@vcmap-show-case/textfields-example/package.json +5 -0
- package/plugins/@vcmap-show-case/window-tester/README.md +3 -0
- package/plugins/{test/windowManagerExample.vue → @vcmap-show-case/window-tester/WindowExample.vue} +36 -20
- package/plugins/{test → @vcmap-show-case/window-tester}/emptyComponent.vue +8 -3
- package/plugins/@vcmap-show-case/window-tester/index.js +62 -0
- package/plugins/{test → @vcmap-show-case/window-tester}/myCustomHeader.vue +0 -0
- package/plugins/@vcmap-show-case/window-tester/package.json +5 -0
- package/plugins/@vcmap-show-case/window-tester/toolbox-data.js +211 -0
- package/plugins/{test/vcsContent.vue → @vcmap-show-case/window-tester/windowExampleContent.vue} +1 -5
- package/plugins/@vcmap-show-case/wizard-example/README.md +3 -0
- package/plugins/{wizardExample → @vcmap-show-case/wizard-example}/index.js +12 -6
- package/plugins/@vcmap-show-case/wizard-example/package.json +5 -0
- package/plugins/@vcmap-show-case/wizard-example/wizardExample.vue +95 -0
- package/plugins/package.json +2 -1
- package/src/actions/actionHelper.js +4 -4
- package/src/actions/stateRefAction.js +0 -10
- package/src/application/VcsApp.vue +42 -23
- package/src/application/VcsMap.vue +9 -0
- package/src/application/VcsNavbar.vue +1 -1
- package/src/components/buttons/VcsActionButtonList.vue +1 -0
- package/src/components/buttons/VcsButton.vue +14 -3
- package/src/components/form-inputs-controls/VcsCheckbox.vue +3 -1
- package/src/components/form-inputs-controls/VcsWizard.vue +17 -20
- package/src/components/form-inputs-controls/VcsWizardStep.vue +160 -0
- package/src/{icons → components/icons}/+all.js +0 -0
- package/src/{icons → components/icons}/2DAreaIcon.vue +0 -0
- package/src/{icons → components/icons}/2DDistanceIcon.vue +0 -0
- package/src/{icons → components/icons}/3DAreaIcon.vue +0 -0
- package/src/{icons → components/icons}/3DDistanceIcon.vue +0 -0
- package/src/{icons → components/icons}/3DHeightIcon.vue +0 -0
- package/src/{icons → components/icons}/AngleIcon.vue +0 -0
- package/src/{icons → components/icons}/AssociationsIcon.vue +0 -0
- package/src/{icons → components/icons}/AxisIcon.vue +0 -0
- package/src/{icons → components/icons}/BoundingBoxIcon.vue +0 -0
- package/src/{icons → components/icons}/CheckboxCheckedIcon.vue +0 -0
- package/src/{icons → components/icons}/CheckboxIcon.vue +0 -0
- package/src/{icons → components/icons}/CheckboxIndeterminateIcon.vue +0 -0
- package/src/{icons → components/icons}/CircleIcon.vue +0 -0
- package/src/{icons → components/icons}/ClippingHorizontalIcon.vue +0 -0
- package/src/{icons → components/icons}/ClippingIcon.vue +0 -0
- package/src/{icons → components/icons}/ClippingVerticalIcon.vue +0 -0
- package/src/{icons → components/icons}/ColorPickerIcon.vue +0 -0
- package/src/{icons → components/icons}/ColorSwatchIcon.vue +0 -0
- package/src/{icons → components/icons}/CommentIcon.vue +0 -0
- package/src/{icons → components/icons}/CompassIcon.vue +0 -0
- package/src/{icons → components/icons}/ComponentsIcon.vue +0 -0
- package/src/{icons → components/icons}/ConeIcon.vue +0 -0
- package/src/{icons → components/icons}/DimensionsHouseIcon.vue +0 -0
- package/src/{icons → components/icons}/EditIcon.vue +0 -0
- package/src/{icons → components/icons}/ElevationProfileIcon.vue +0 -0
- package/src/{icons → components/icons}/ExportAreaIcon.vue +0 -0
- package/src/{icons → components/icons}/ExportFlightIcon.vue +0 -0
- package/src/{icons → components/icons}/ExportIcon.vue +0 -0
- package/src/{icons → components/icons}/ExternalLinkIcon.vue +0 -0
- package/src/{icons → components/icons}/EyeIcon.vue +0 -0
- package/src/{icons → components/icons}/FastForwardIcon.vue +0 -0
- package/src/{icons → components/icons}/FilterIcon.vue +0 -0
- package/src/{icons → components/icons}/GlobalTerrainIcon.vue +0 -0
- package/src/{icons → components/icons}/GlobeNatureIcon.vue +0 -0
- package/src/{icons → components/icons}/GroundIcon.vue +0 -0
- package/src/{icons → components/icons}/HealthCareIndustriesIcon.vue +0 -0
- package/src/{icons → components/icons}/HelpIcon.vue +0 -0
- package/src/{icons → components/icons}/HideIcon.vue +0 -0
- package/src/{icons → components/icons}/HomePointIcon.vue +0 -0
- package/src/{icons → components/icons}/HospitalsIcon.vue +0 -0
- package/src/{icons → components/icons}/HouseIcon.vue +0 -0
- package/src/{icons → components/icons}/ImportIcon.vue +0 -0
- package/src/{icons → components/icons}/InfoIcon.vue +0 -0
- package/src/{icons → components/icons}/KebabIcon.vue +0 -0
- package/src/{icons → components/icons}/LabelIcon.vue +0 -0
- package/src/{icons → components/icons}/LayersIcon.vue +0 -0
- package/src/{icons → components/icons}/LegendIcon.vue +0 -0
- package/src/{icons → components/icons}/LineIcon.vue +0 -0
- package/src/{icons → components/icons}/LinkIcon.vue +0 -0
- package/src/{icons → components/icons}/LogoutIcon.vue +0 -0
- package/src/{icons → components/icons}/MapIcon.vue +0 -0
- package/src/{icons → components/icons}/MenuIcon.vue +0 -0
- package/src/{icons → components/icons}/MinusIcon.vue +0 -0
- package/src/{icons → components/icons}/ObjectAttributeIcon.vue +0 -0
- package/src/{icons → components/icons}/ObjectSelectIcon.vue +0 -0
- package/src/{icons → components/icons}/ObliqueViewIcon.vue +0 -0
- package/src/{icons → components/icons}/PdfIcon.vue +0 -0
- package/src/{icons → components/icons}/PedestrianIcon.vue +0 -0
- package/src/{icons → components/icons}/PenIcon.vue +0 -0
- package/src/{icons → components/icons}/PlayCircleIcon.vue +0 -0
- package/src/{icons → components/icons}/PlusIcon.vue +0 -0
- package/src/{icons → components/icons}/PoiIcon.vue +0 -0
- package/src/{icons → components/icons}/PointSelectIcon.vue +0 -0
- package/src/{icons → components/icons}/PolygonIcon.vue +0 -0
- package/src/{icons → components/icons}/PresentationModeIcon.vue +0 -0
- package/src/{icons → components/icons}/ProgressIcon.vue +0 -0
- package/src/{icons → components/icons}/QueryIcon.vue +0 -0
- package/src/{icons → components/icons}/RectangleIcon.vue +0 -0
- package/src/{icons → components/icons}/ReturnIcon.vue +0 -0
- package/src/{icons → components/icons}/RewindIcon.vue +0 -0
- package/src/{icons → components/icons}/RotateLeftIcon.vue +0 -0
- package/src/{icons → components/icons}/RotateRightIcon.vue +0 -0
- package/src/{icons → components/icons}/ScreenshotIcon.vue +0 -0
- package/src/{icons → components/icons}/SearchIcon.vue +0 -0
- package/src/{icons → components/icons}/ShadowIcon.vue +0 -0
- package/src/{icons → components/icons}/ShapesIcon.vue +0 -0
- package/src/{icons → components/icons}/ShareIcon.vue +0 -0
- package/src/{icons → components/icons}/SimpleCircleFilledIcon.vue +0 -0
- package/src/{icons → components/icons}/SimpleCircleHalfFilledIcon.vue +0 -0
- package/src/{icons → components/icons}/SimpleCircleOutlinedIcon.vue +0 -0
- package/src/{icons → components/icons}/SkipNextIcon.vue +0 -0
- package/src/{icons → components/icons}/SkipPreviousIcon.vue +0 -0
- package/src/{icons → components/icons}/SplitViewIcon.vue +0 -0
- package/src/{icons → components/icons}/TerrainBoxIcon.vue +0 -0
- package/src/{icons → components/icons}/TextStyleIcon.vue +0 -0
- package/src/{icons → components/icons}/ThreeDimensionsIcon.vue +0 -0
- package/src/{icons → components/icons}/ToolsIcon.vue +0 -0
- package/src/{icons → components/icons}/TouchIcon.vue +0 -0
- package/src/{icons → components/icons}/TrashCanIcon.vue +0 -0
- package/src/{icons → components/icons}/TriangleIcon.vue +0 -0
- package/src/{icons → components/icons}/TwoDimensionsIcon.vue +0 -0
- package/src/{icons → components/icons}/UploadIcon.vue +0 -0
- package/src/{icons → components/icons}/UserProfileIcon.vue +0 -0
- package/src/{icons → components/icons}/UserShareIcon.vue +0 -0
- package/src/{icons → components/icons}/VideoRecorderIcon.vue +0 -0
- package/src/{icons → components/icons}/ViewpointFlightIcon.vue +0 -0
- package/src/{icons → components/icons}/ViewpointIcon.vue +0 -0
- package/src/{icons → components/icons}/Viewshed360Icon.vue +0 -0
- package/src/{icons → components/icons}/ViewshedConeIcon.vue +0 -0
- package/src/{icons → components/icons}/ViewshedIcon.vue +0 -0
- package/src/{icons → components/icons}/WalkingIcon.vue +0 -0
- package/src/{icons → components/icons}/WallIcon.vue +0 -0
- package/src/{icons → components/icons}/WandIcon.vue +0 -0
- package/src/components/lists/VcsActionList.vue +2 -0
- package/src/components/lists/VcsList.vue +21 -12
- package/src/components/lists/VcsTreeviewLeaf.vue +14 -2
- package/src/components/notification/VcsTooltip.vue +1 -1
- package/src/contentTree/layerContentTreeItem.js +2 -2
- package/src/featureInfo/BalloonComponent.vue +2 -2
- package/src/featureInfo/abstractFeatureInfoView.js +1 -1
- package/src/featureInfo/addressBalloonFeatureInfoView.js +1 -1
- package/src/featureInfo/balloonFeatureInfoView.js +1 -1
- package/src/featureInfo/balloonHelper.js +6 -6
- package/src/featureInfo/featureInfo.js +2 -2
- package/src/i18n/de.js +8 -8
- package/src/i18n/en.js +6 -6
- package/src/legend/legendHelper.js +8 -8
- package/src/legend/vcsLegend.vue +33 -5
- package/src/manager/toolbox/ToolboxManager.vue +1 -0
- package/src/manager/window/WindowComponent.vue +42 -4
- package/src/manager/window/WindowComponentHeader.vue +1 -1
- package/src/manager/window/windowHelper.js +7 -11
- package/src/manager/window/windowManager.js +15 -11
- package/src/navigation/mapNavCompass.vue +13 -7
- package/src/navigation/mapNavigation.vue +66 -4
- package/src/navigation/orientationToolsButton.vue +1 -1
- package/src/navigation/overviewMap.js +26 -10
- package/src/navigation/vcsCompass.vue +4 -73
- package/src/setup.js +1 -1
- package/src/vuePlugins/vuetify.js +1 -1
- package/dist/assets/cesium/Workers/ArcType-c9b2b290.js +0 -25
- package/dist/assets/cesium/Workers/AttributeCompression-7b0f288d.js +0 -25
- package/dist/assets/cesium/Workers/AxisAlignedBoundingBox-d0c22774.js +0 -25
- package/dist/assets/cesium/Workers/BoundingRectangle-201b1a81.js +0 -25
- package/dist/assets/cesium/Workers/BoxGeometry-4985457c.js +0 -25
- package/dist/assets/cesium/Workers/Color-cc8c18b3.js +0 -25
- package/dist/assets/cesium/Workers/ComponentDatatype-0200bf8c.js +0 -25
- package/dist/assets/cesium/Workers/CoplanarPolygonGeometryLibrary-4345acdf.js +0 -25
- package/dist/assets/cesium/Workers/CorridorGeometryLibrary-850a6c35.js +0 -25
- package/dist/assets/cesium/Workers/CylinderGeometry-57a1051a.js +0 -25
- package/dist/assets/cesium/Workers/CylinderGeometryLibrary-62ce5a1f.js +0 -25
- package/dist/assets/cesium/Workers/EllipseGeometry-8627398f.js +0 -25
- package/dist/assets/cesium/Workers/EllipseGeometryLibrary-e5919563.js +0 -25
- package/dist/assets/cesium/Workers/EllipseOutlineGeometry-96fd4ae1.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidGeodesic-8bfefbff.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidGeometry-377329b9.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidOutlineGeometry-e6e16e49.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidRhumbLine-03528f73.js +0 -25
- package/dist/assets/cesium/Workers/EllipsoidTangentPlane-c080fd1b.js +0 -25
- package/dist/assets/cesium/Workers/EncodedCartesian3-ea0e408f.js +0 -25
- package/dist/assets/cesium/Workers/FrustumGeometry-a8b5d817.js +0 -25
- package/dist/assets/cesium/Workers/GeometryAttribute-8458a8fd.js +0 -25
- package/dist/assets/cesium/Workers/GeometryAttributes-ac0f8485.js +0 -25
- package/dist/assets/cesium/Workers/GeometryInstance-ee3aa3ba.js +0 -25
- package/dist/assets/cesium/Workers/GeometryOffsetAttribute-08ae0c50.js +0 -25
- package/dist/assets/cesium/Workers/GeometryPipeline-33ca229c.js +0 -25
- package/dist/assets/cesium/Workers/IndexDatatype-e713bfd2.js +0 -25
- package/dist/assets/cesium/Workers/IntersectionTests-eb4db8e0.js +0 -25
- package/dist/assets/cesium/Workers/Matrix2-eefef8eb.js +0 -25
- package/dist/assets/cesium/Workers/OrientedBoundingBox-5193f9a2.js +0 -25
- package/dist/assets/cesium/Workers/Plane-b0299683.js +0 -25
- package/dist/assets/cesium/Workers/PolygonGeometryLibrary-b61295f3.js +0 -25
- package/dist/assets/cesium/Workers/PolygonPipeline-eb527514.js +0 -25
- package/dist/assets/cesium/Workers/PolylinePipeline-0f23dd84.js +0 -25
- package/dist/assets/cesium/Workers/PolylineVolumeGeometryLibrary-2d903430.js +0 -25
- package/dist/assets/cesium/Workers/PrimitivePipeline-e2640413.js +0 -25
- package/dist/assets/cesium/Workers/RectangleGeometryLibrary-ae8bf8a5.js +0 -25
- package/dist/assets/cesium/Workers/RuntimeError-5baf5c66.js +0 -25
- package/dist/assets/cesium/Workers/TerrainEncoding-bc10ab54.js +0 -25
- package/dist/assets/cesium/Workers/Transforms-d2e5867e.js +0 -63
- package/dist/assets/cesium/Workers/VertexFormat-5ec0d9ff.js +0 -25
- package/dist/assets/cesium/Workers/WallGeometryLibrary-1a33e416.js +0 -25
- package/dist/assets/cesium/Workers/WebGLConstants-5b50ced1.js +0 -25
- package/dist/assets/cesium/Workers/WebMercatorProjection-cd2f30c2.js +0 -25
- package/dist/assets/cesium/Workers/_commonjsHelpers-bc29abbc.js +0 -25
- package/dist/assets/cesium/Workers/arrayRemoveDuplicates-f13aceb1.js +0 -25
- package/dist/assets/cesium/Workers/combine-7533016d.js +0 -25
- package/dist/assets/cesium/Workers/defaultValue-0c475b81.js +0 -25
- package/dist/assets/cesium/Workers/package.json +0 -1
- package/dist/assets/ui.dffe32.css +0 -1
- package/plugins/@vcmap/pluginExample/config.json +0 -6
- package/plugins/@vcmap/pluginExample/package.json +0 -7
- package/plugins/categoryTest/ItemEditor.vue +0 -13
- package/plugins/test/allIconsComponent.vue +0 -50
- package/plugins/test/index.js +0 -207
- package/plugins/test/toolbox-data.js +0 -154
- package/plugins/wizardExample/wizardExample.vue +0 -77
- package/src/components/form-inputs-controls/VcsColorPicker.vue +0 -85
package/config/www.config.json
CHANGED
@@ -8,6 +8,21 @@
|
|
8
8
|
"i18n": [
|
9
9
|
{
|
10
10
|
"de": {
|
11
|
+
"layer": {
|
12
|
+
"buildings": "LOD2 Gebäude - Open Data 2022",
|
13
|
+
"summerTrees": "Sommerbäume",
|
14
|
+
"berlinLOD2Textured": "Gebäude texturiert 2013",
|
15
|
+
"historicImages1928": "Historische Luftbilder 1928",
|
16
|
+
"waterSpeed": "Fließgeschwindigkeit (HQ100)",
|
17
|
+
"waterHeight": "Wasserhöhen (HQ100)",
|
18
|
+
"securedFloodPlains": "Vorläufig gesicherte Überschwemmungsgebiete",
|
19
|
+
"designatedFloodPlains": "Festgesetzte Überschwemmungsgebiete",
|
20
|
+
"footprints": "OSM Gebäudegrundrisse"
|
21
|
+
},
|
22
|
+
"featureInfo": {
|
23
|
+
"waterSpeed": "Geschwindigkeit [m/s]",
|
24
|
+
"waterHeight": "Wasserhöhe [m]"
|
25
|
+
},
|
11
26
|
"codeLists": {
|
12
27
|
"values": {
|
13
28
|
"roofType": {
|
@@ -332,6 +347,23 @@
|
|
332
347
|
}
|
333
348
|
}
|
334
349
|
}
|
350
|
+
},
|
351
|
+
"en": {
|
352
|
+
"layer": {
|
353
|
+
"buildings": "LOD2 Buildings - Open Data 2022",
|
354
|
+
"summerTrees": "Summer Trees",
|
355
|
+
"berlinLOD2Textured": "Buildings textured 2013",
|
356
|
+
"historicImages1928": "Aerial Images 1928",
|
357
|
+
"waterSpeed": "Flow velocity (HQ100)",
|
358
|
+
"waterHeight": "Water heights (HQ100)",
|
359
|
+
"securedFloodPlains": "Provisionally secured floodplains",
|
360
|
+
"designatedFloodPlains": "Designated floodplains",
|
361
|
+
"footprints": "OSM building footprints"
|
362
|
+
},
|
363
|
+
"featureInfo": {
|
364
|
+
"waterSpeed": "Velocity [m/s]",
|
365
|
+
"waterHeight": "Water height [m]"
|
366
|
+
}
|
335
367
|
}
|
336
368
|
}
|
337
369
|
],
|
@@ -386,88 +418,58 @@
|
|
386
418
|
}
|
387
419
|
],
|
388
420
|
"layers": [
|
389
|
-
{
|
390
|
-
"type": "TerrainLayer",
|
391
|
-
"name": "BerlinWaterTerrain (level15)",
|
392
|
-
"url": "https://www.virtualcitymap.de/datasource-data/000834f6-8670-49d9-a430-df5b92474985/?baseTerrain=82JNcy7Xi7FNB3WXR",
|
393
|
-
"activeOnStartup": false,
|
394
|
-
"requestVertexNormals": true,
|
395
|
-
"exclusiveGroups": [
|
396
|
-
"terrain"
|
397
|
-
],
|
398
|
-
"properties": {
|
399
|
-
"title": "Gelände Berlin Wasser"
|
400
|
-
}
|
401
|
-
},
|
402
421
|
{
|
403
422
|
"type": "CesiumTilesetLayer",
|
404
|
-
"name": "
|
405
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
423
|
+
"name": "Bayern - LOD2 (pbr)",
|
424
|
+
"url": "https://www.virtualcitymap.de/datasource-data/40af565a-821b-4e23-9a2b-f9e69ba9a4d2/tileset.json",
|
406
425
|
"activeOnStartup": false,
|
407
426
|
"screenSpaceError": 16,
|
408
427
|
"screenSpaceErrorMobile": 32,
|
409
428
|
"properties": {
|
410
|
-
"title": "
|
411
|
-
"featureInfo": "
|
412
|
-
}
|
413
|
-
},
|
414
|
-
{
|
415
|
-
"type": "TerrainLayer",
|
416
|
-
"name": "GermanyBaseTerrain",
|
417
|
-
"url": "https://www.virtualcitymap.de/datasource-data/globalterrain_5_9",
|
418
|
-
"activeOnStartup": true,
|
419
|
-
"requestVertexNormals": true,
|
420
|
-
"exclusiveGroups": [
|
421
|
-
"terrain"
|
422
|
-
],
|
423
|
-
"properties": {
|
424
|
-
"title": "Deutschland Gelände"
|
429
|
+
"title": "Bayern - LOD2",
|
430
|
+
"featureInfo": "tableBuildings"
|
425
431
|
}
|
426
432
|
},
|
427
433
|
{
|
428
434
|
"type": "CesiumTilesetLayer",
|
429
|
-
"name": "
|
430
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
431
|
-
"activeOnStartup":
|
435
|
+
"name": "Sachsen - LOD2 (pbr recalculation)",
|
436
|
+
"url": "https://www.virtualcitymap.de/datasource-data/fd876dab-dc81-46ae-bce1-fc7913981ed2/tileset.json",
|
437
|
+
"activeOnStartup": false,
|
432
438
|
"screenSpaceError": 16,
|
433
439
|
"screenSpaceErrorMobile": 32,
|
434
|
-
"exclusiveGroups": [
|
435
|
-
"3D",
|
436
|
-
"classified"
|
437
|
-
],
|
438
440
|
"properties": {
|
439
|
-
"title": "
|
441
|
+
"title": "Sachsen - LOD2",
|
440
442
|
"featureInfo": "tableBuildings"
|
441
443
|
}
|
442
444
|
},
|
443
445
|
{
|
444
446
|
"type": "CesiumTilesetLayer",
|
445
|
-
"name": "
|
446
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
447
|
+
"name": "Sachsen-Anhalt - LOD2 (pbr recalculation)",
|
448
|
+
"url": "https://www.virtualcitymap.de/datasource-data/3efd2b28-f83b-469b-a33b-a08e79384da6/tileset.json",
|
447
449
|
"activeOnStartup": false,
|
448
450
|
"screenSpaceError": 16,
|
449
451
|
"screenSpaceErrorMobile": 32,
|
450
452
|
"properties": {
|
451
|
-
"title": "
|
453
|
+
"title": "Sachsen-Anhalt - LOD2",
|
452
454
|
"featureInfo": "tableBuildings"
|
453
455
|
}
|
454
456
|
},
|
455
457
|
{
|
456
458
|
"type": "CesiumTilesetLayer",
|
457
|
-
"name": "
|
458
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
459
|
+
"name": "Summer Trees (pbr recalculation)",
|
460
|
+
"url": "https://www.virtualcitymap.de/datasource-data/91c3ef8a-da68-4031-ae0d-57a86d619cc9/tileset.json",
|
459
461
|
"activeOnStartup": false,
|
460
462
|
"screenSpaceError": 16,
|
461
463
|
"screenSpaceErrorMobile": 32,
|
462
464
|
"properties": {
|
463
|
-
"title": "
|
464
|
-
"featureInfo": "
|
465
|
+
"title": "layer.summerTrees",
|
466
|
+
"featureInfo": "tableTrees"
|
465
467
|
}
|
466
468
|
},
|
467
469
|
{
|
468
470
|
"type": "CesiumTilesetLayer",
|
469
|
-
"name": "
|
470
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
471
|
+
"name": "Thüringen - LOD2 (pbr recalculation)",
|
472
|
+
"url": "https://www.virtualcitymap.de/datasource-data/628b571c-1e93-4f27-a9c0-e13a15848cfe/tileset.json",
|
471
473
|
"activeOnStartup": false,
|
472
474
|
"screenSpaceError": 16,
|
473
475
|
"screenSpaceErrorMobile": 32,
|
@@ -478,50 +480,32 @@
|
|
478
480
|
},
|
479
481
|
{
|
480
482
|
"type": "CesiumTilesetLayer",
|
481
|
-
"name": "
|
482
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
483
|
+
"name": "Niedersachsen - LOD2 (pbr recalculation)",
|
484
|
+
"url": "https://www.virtualcitymap.de/datasource-data/72077dac-9695-4147-bb4a-c8840a529c14/tileset.json",
|
483
485
|
"activeOnStartup": false,
|
484
486
|
"screenSpaceError": 16,
|
485
487
|
"screenSpaceErrorMobile": 32,
|
486
|
-
"exclusiveGroups": [
|
487
|
-
"3D",
|
488
|
-
"classified"
|
489
|
-
],
|
490
488
|
"properties": {
|
491
|
-
"title": "
|
489
|
+
"title": "Niedersachsen - LOD2",
|
492
490
|
"featureInfo": "tableBuildings"
|
493
491
|
}
|
494
492
|
},
|
495
493
|
{
|
496
494
|
"type": "CesiumTilesetLayer",
|
497
|
-
"name": "
|
498
|
-
"url": "https://
|
495
|
+
"name": "NRW - LOD2 (pbr recalculation)",
|
496
|
+
"url": "https://www.virtualcitymap.de/datasource-data/ef0479d6-2c12-4510-b7c2-9d49f28507e4/tileset.json",
|
499
497
|
"activeOnStartup": false,
|
500
|
-
"
|
501
|
-
"
|
502
|
-
"type": "DeclarativeStyleItem",
|
503
|
-
"declarativeStyle": {
|
504
|
-
"show": "true",
|
505
|
-
"color": "color('#e40521', 1)"
|
506
|
-
}
|
507
|
-
},
|
508
|
-
"tilesetOptions": {
|
509
|
-
"skipLevelOfDetail": false
|
510
|
-
},
|
498
|
+
"screenSpaceError": 16,
|
499
|
+
"screenSpaceErrorMobile": 32,
|
511
500
|
"properties": {
|
512
|
-
"title": "
|
513
|
-
"featureInfo": "tableBuildings"
|
514
|
-
"attributions": {
|
515
|
-
"provider": "Senatsverwaltung für Stadtentwicklung, Bauen und Wohnen",
|
516
|
-
"url": "https://www.stadtentwicklung.berlin.de/planen/stadtmodelle/de/digitale_innenstadt/3d/index.shtml",
|
517
|
-
"year": "2021"
|
518
|
-
}
|
501
|
+
"title": "NRW - LOD2",
|
502
|
+
"featureInfo": "tableBuildings"
|
519
503
|
}
|
520
504
|
},
|
521
505
|
{
|
522
506
|
"type": "CesiumTilesetLayer",
|
523
|
-
"name": "Hessen - LOD2",
|
524
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
507
|
+
"name": "Hessen - LOD2 (pbr recalculation)",
|
508
|
+
"url": "https://www.virtualcitymap.de/datasource-data/5077faba-e3ac-4109-bfd9-3f18e8faf9b2/tileset.json",
|
525
509
|
"activeOnStartup": false,
|
526
510
|
"screenSpaceError": 16,
|
527
511
|
"screenSpaceErrorMobile": 32,
|
@@ -532,8 +516,8 @@
|
|
532
516
|
},
|
533
517
|
{
|
534
518
|
"type": "CesiumTilesetLayer",
|
535
|
-
"name": "Hamburg - LOD2",
|
536
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
519
|
+
"name": "Hamburg - LOD2 (pbr recalculation)",
|
520
|
+
"url": "https://www.virtualcitymap.de/datasource-data/1c95f6f5-0646-4613-bb2b-27d5f8615a20/tileset.json",
|
537
521
|
"activeOnStartup": false,
|
538
522
|
"screenSpaceError": 16,
|
539
523
|
"screenSpaceErrorMobile": 32,
|
@@ -544,8 +528,8 @@
|
|
544
528
|
},
|
545
529
|
{
|
546
530
|
"type": "CesiumTilesetLayer",
|
547
|
-
"name": "Brandenburg - LOD2",
|
548
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
531
|
+
"name": "Brandenburg - LOD2 (pbr recalculation)",
|
532
|
+
"url": "https://www.virtualcitymap.de/datasource-data/71640b45-eaee-4576-8caa-0dd12543b2bd/tileset.json",
|
549
533
|
"datasourceId": "fHWWCMfb46is5zhy9",
|
550
534
|
"activeOnStartup": false,
|
551
535
|
"screenSpaceError": 16,
|
@@ -557,28 +541,104 @@
|
|
557
541
|
},
|
558
542
|
{
|
559
543
|
"type": "CesiumTilesetLayer",
|
560
|
-
"name": "
|
561
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
562
|
-
"activeOnStartup":
|
544
|
+
"name": "Berlin untexturiert openData (pbr recalculation)",
|
545
|
+
"url": "https://www.virtualcitymap.de/datasource-data/f892f6af-180a-4eef-917f-5ff03c260b32/tileset.json",
|
546
|
+
"activeOnStartup": true,
|
563
547
|
"screenSpaceError": 16,
|
564
548
|
"screenSpaceErrorMobile": 32,
|
549
|
+
"exclusiveGroups": [
|
550
|
+
"3D",
|
551
|
+
"classified"
|
552
|
+
],
|
565
553
|
"properties": {
|
566
|
-
"title": "
|
567
|
-
"featureInfo": "tableBuildings"
|
554
|
+
"title": "Berlin - LOD2",
|
555
|
+
"featureInfo": "tableBuildings",
|
556
|
+
"availableStyles": [
|
557
|
+
"MeasuredHeightGreen",
|
558
|
+
"MeasuredHeightBrown",
|
559
|
+
"MeasuredHeightBlue",
|
560
|
+
"ClassifiedbyRoofType",
|
561
|
+
"BuildingFunction",
|
562
|
+
"Transparentbuildings"
|
563
|
+
]
|
568
564
|
}
|
569
565
|
},
|
570
566
|
{
|
571
567
|
"type": "CesiumTilesetLayer",
|
572
|
-
"name": "
|
573
|
-
"url": "https://www.virtualcitymap.de/datasource-data/
|
568
|
+
"name": "Berlin textured OpenData (pbr recalculation)",
|
569
|
+
"url": "https://www.virtualcitymap.de/datasource-data/632b42e6-b44c-450b-9436-93e48ca78ea2/tileset.json",
|
574
570
|
"activeOnStartup": false,
|
575
571
|
"screenSpaceError": 16,
|
576
572
|
"screenSpaceErrorMobile": 32,
|
573
|
+
"exclusiveGroups": [
|
574
|
+
"3D",
|
575
|
+
"classified"
|
576
|
+
],
|
577
577
|
"properties": {
|
578
|
-
"title": "
|
578
|
+
"title": "layer.berlinLOD2Textured",
|
579
579
|
"featureInfo": "tableBuildings"
|
580
580
|
}
|
581
581
|
},
|
582
|
+
{
|
583
|
+
"type": "TerrainLayer",
|
584
|
+
"name": "BerlinWaterTerrain (level15)",
|
585
|
+
"url": "https://www.virtualcitymap.de/datasource-data/000834f6-8670-49d9-a430-df5b92474985/?baseTerrain=82JNcy7Xi7FNB3WXR",
|
586
|
+
"activeOnStartup": false,
|
587
|
+
"requestVertexNormals": true,
|
588
|
+
"exclusiveGroups": [
|
589
|
+
"terrain"
|
590
|
+
]
|
591
|
+
},
|
592
|
+
{
|
593
|
+
"type": "WaterShaderLayer",
|
594
|
+
"name": "WaterLayer",
|
595
|
+
"activeOnStartup": false,
|
596
|
+
"url": "https://www.virtualcitymap.de/datasource-data/lindau_2022_water/berlin_section-T0.000000_tileset.json",
|
597
|
+
"shaderProperties": {
|
598
|
+
"waveScaling": 41,
|
599
|
+
"scaleWithHeight": true,
|
600
|
+
"velocityScaling": 0,
|
601
|
+
"animationCycle": 3,
|
602
|
+
"transparencyFactor": 5,
|
603
|
+
"waterColor": "#288a86"
|
604
|
+
}
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"type": "TerrainLayer",
|
608
|
+
"name": "GermanyBaseTerrain",
|
609
|
+
"url": "https://www.virtualcitymap.de/datasource-data/globalterrain_5_9",
|
610
|
+
"activeOnStartup": true,
|
611
|
+
"requestVertexNormals": true,
|
612
|
+
"exclusiveGroups": [
|
613
|
+
"terrain"
|
614
|
+
]
|
615
|
+
},
|
616
|
+
{
|
617
|
+
"type": "CesiumTilesetLayer",
|
618
|
+
"name": "Planwerk innere Stadt",
|
619
|
+
"url": "https://berlin-wab.virtualcitymap.de/datasource-data/plannings/cesium_planwerk_innere_stadt/3444ad7c-b6a5-4623-9421-e80e37d5378c/",
|
620
|
+
"activeOnStartup": false,
|
621
|
+
"allowPicking": false,
|
622
|
+
"style": {
|
623
|
+
"type": "DeclarativeStyleItem",
|
624
|
+
"declarativeStyle": {
|
625
|
+
"show": "true",
|
626
|
+
"color": "color('#e40521', 1)"
|
627
|
+
}
|
628
|
+
},
|
629
|
+
"tilesetOptions": {
|
630
|
+
"skipLevelOfDetail": false
|
631
|
+
},
|
632
|
+
"properties": {
|
633
|
+
"title": "Planwerk Innere Stadt",
|
634
|
+
"featureInfo": "tableBuildings",
|
635
|
+
"attributions": {
|
636
|
+
"provider": "Senatsverwaltung für Stadtentwicklung, Bauen und Wohnen",
|
637
|
+
"url": "https://www.stadtentwicklung.berlin.de/planen/stadtmodelle/de/digitale_innenstadt/3d/index.shtml",
|
638
|
+
"year": "2021"
|
639
|
+
}
|
640
|
+
}
|
641
|
+
},
|
582
642
|
{
|
583
643
|
"type": "CesiumTilesetLayer",
|
584
644
|
"name": "Mesh Classification Layer",
|
@@ -736,7 +796,7 @@
|
|
736
796
|
"maxLevel": 20,
|
737
797
|
"tilingSchema": "geographic",
|
738
798
|
"properties": {
|
739
|
-
"title": "
|
799
|
+
"title": "layer.historicImages1928"
|
740
800
|
}
|
741
801
|
},
|
742
802
|
{
|
@@ -766,12 +826,12 @@
|
|
766
826
|
"responseType": "application/geojson",
|
767
827
|
"opacity": 0.7,
|
768
828
|
"properties": {
|
769
|
-
"title": "
|
829
|
+
"title": "layer.waterSpeed",
|
770
830
|
"defaultViewpoint": "soest",
|
771
|
-
"featureInfo": "
|
831
|
+
"featureInfo": "waterSpeed",
|
772
832
|
"legend": [{
|
773
833
|
"type": "ImageLegendItem",
|
774
|
-
"tooltip": "
|
834
|
+
"tooltip": "layer.waterSpeed",
|
775
835
|
"src": "https://sgx.geodatenzentrum.de/wms_starkregen__sess-1426bd3e-179d-49b1-b0dd-2994524ac2a8?format=image%2Fpng&layer=fliessgeschwindigkeiten_selten&sld_version=1.1.0&request=GetLegendGraphic&service=WMS&version=1.1.1&styles=",
|
776
836
|
"popoutBtn": true
|
777
837
|
}]
|
@@ -804,12 +864,12 @@
|
|
804
864
|
"responseType": "application/geojson",
|
805
865
|
"opacity": 0.7,
|
806
866
|
"properties": {
|
807
|
-
"title": "
|
867
|
+
"title": "layer.waterHeight",
|
808
868
|
"defaultViewpoint": "soest",
|
809
|
-
"featureInfo": "
|
869
|
+
"featureInfo": "waterHeight",
|
810
870
|
"legend": [{
|
811
871
|
"type": "ImageLegendItem",
|
812
|
-
"tooltip": "
|
872
|
+
"tooltip": "layer.waterHeight",
|
813
873
|
"src": "https://sgx.geodatenzentrum.de/wms_starkregen__sess-1426bd3e-179d-49b1-b0dd-2994524ac2a8?format=image%2Fpng&layer=wasserhoehen_selten&sld_version=1.1.0&request=GetLegendGraphic&service=WMS&version=1.1.1&styles=",
|
814
874
|
"popoutBtn": true
|
815
875
|
}]
|
@@ -837,7 +897,7 @@
|
|
837
897
|
"maxLevel": 21,
|
838
898
|
"tilingSchema": "geographic",
|
839
899
|
"properties": {
|
840
|
-
"title": "
|
900
|
+
"title": "layer.securedFloodPlains",
|
841
901
|
"defaultViewpoint": "soest"
|
842
902
|
}
|
843
903
|
},
|
@@ -867,7 +927,7 @@
|
|
867
927
|
"tilingSchema": "geographic",
|
868
928
|
"responseType": "application/geojson",
|
869
929
|
"properties": {
|
870
|
-
"title": "
|
930
|
+
"title": "layer.designatedFloodPlains",
|
871
931
|
"defaultViewpoint": "soest"
|
872
932
|
}
|
873
933
|
},
|
@@ -887,7 +947,7 @@
|
|
887
947
|
},
|
888
948
|
"activeOnStartup": false,
|
889
949
|
"properties": {
|
890
|
-
"title": "
|
950
|
+
"title": "layer.footprints",
|
891
951
|
"featureInfo": "tableAll"
|
892
952
|
}
|
893
953
|
}
|
@@ -978,6 +1038,560 @@
|
|
978
1038
|
"show": "true",
|
979
1039
|
"color": "color('#ffffff', 0.05)"
|
980
1040
|
}
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
"name": "MeasuredHeightGreen",
|
1044
|
+
"type": "DeclarativeStyleItem",
|
1045
|
+
"title": "Measured Height (green)",
|
1046
|
+
"declarativeStyle": {
|
1047
|
+
"show": "true",
|
1048
|
+
"color": {
|
1049
|
+
"conditions": [
|
1050
|
+
[
|
1051
|
+
"${attributes.measuredHeight} === undefined",
|
1052
|
+
"color('#006d2c')"
|
1053
|
+
],
|
1054
|
+
[
|
1055
|
+
"${attributes.measuredHeight} < 5",
|
1056
|
+
"color('#edf8e9')"
|
1057
|
+
],
|
1058
|
+
[
|
1059
|
+
"${attributes.measuredHeight} < 5",
|
1060
|
+
"color('#edf8e9')"
|
1061
|
+
],
|
1062
|
+
[
|
1063
|
+
"${attributes.measuredHeight} < 15",
|
1064
|
+
"color('#bae4b3')"
|
1065
|
+
],
|
1066
|
+
[
|
1067
|
+
"${attributes.measuredHeight} < 30",
|
1068
|
+
"color('#74c476')"
|
1069
|
+
],
|
1070
|
+
[
|
1071
|
+
"${attributes.measuredHeight} < 65",
|
1072
|
+
"color('#31a354')"
|
1073
|
+
],
|
1074
|
+
[
|
1075
|
+
"true",
|
1076
|
+
"color('#006d2c')"
|
1077
|
+
]
|
1078
|
+
]
|
1079
|
+
}
|
1080
|
+
},
|
1081
|
+
"properties": {
|
1082
|
+
"legend": [
|
1083
|
+
{
|
1084
|
+
"type": "StyleLegendItem",
|
1085
|
+
"colNr": 1,
|
1086
|
+
"rows": [
|
1087
|
+
{
|
1088
|
+
"type": "FillLegendRow",
|
1089
|
+
"fill": {
|
1090
|
+
"color": "#edf8e9"
|
1091
|
+
},
|
1092
|
+
"title": "< 5 m"
|
1093
|
+
},
|
1094
|
+
{
|
1095
|
+
"type": "FillLegendRow",
|
1096
|
+
"fill": {
|
1097
|
+
"color": "#bae4b3"
|
1098
|
+
},
|
1099
|
+
"title": "< 15 m"
|
1100
|
+
},
|
1101
|
+
{
|
1102
|
+
"type": "FillLegendRow",
|
1103
|
+
"fill": {
|
1104
|
+
"color": "#74c476"
|
1105
|
+
},
|
1106
|
+
"title": "< 30 m"
|
1107
|
+
},
|
1108
|
+
{
|
1109
|
+
"type": "FillLegendRow",
|
1110
|
+
"fill": {
|
1111
|
+
"color": "#31a354"
|
1112
|
+
},
|
1113
|
+
"title": "< 65 m"
|
1114
|
+
},
|
1115
|
+
{
|
1116
|
+
"type": "FillLegendRow",
|
1117
|
+
"fill": {
|
1118
|
+
"color": "#006d2c"
|
1119
|
+
},
|
1120
|
+
"title": "> 65 m"
|
1121
|
+
}
|
1122
|
+
]
|
1123
|
+
}
|
1124
|
+
]
|
1125
|
+
}
|
1126
|
+
},
|
1127
|
+
{
|
1128
|
+
"name": "MeasuredHeightBrown",
|
1129
|
+
"type": "DeclarativeStyleItem",
|
1130
|
+
"title": "Measured Height (brown)",
|
1131
|
+
"declarativeStyle": {
|
1132
|
+
"show": "true",
|
1133
|
+
"color": {
|
1134
|
+
"conditions": [
|
1135
|
+
[
|
1136
|
+
"${attributes.measuredHeight} === undefined",
|
1137
|
+
"color('#993404')"
|
1138
|
+
],
|
1139
|
+
[
|
1140
|
+
"${attributes.measuredHeight} < 5",
|
1141
|
+
"color('#ffffd4')"
|
1142
|
+
],
|
1143
|
+
[
|
1144
|
+
"${attributes.measuredHeight} < 15",
|
1145
|
+
"color('#fed98e')"
|
1146
|
+
],
|
1147
|
+
[
|
1148
|
+
"${attributes.measuredHeight} < 30",
|
1149
|
+
"color('#fe9929')"
|
1150
|
+
],
|
1151
|
+
[
|
1152
|
+
"${attributes.measuredHeight} < 65",
|
1153
|
+
"color('#d95f0e')"
|
1154
|
+
],
|
1155
|
+
[
|
1156
|
+
"true",
|
1157
|
+
"color('#993404')"
|
1158
|
+
]
|
1159
|
+
]
|
1160
|
+
}
|
1161
|
+
},
|
1162
|
+
"properties": {
|
1163
|
+
"legend": [
|
1164
|
+
{
|
1165
|
+
"type": "StyleLegendItem",
|
1166
|
+
"colNr": 1,
|
1167
|
+
"rows": [
|
1168
|
+
{
|
1169
|
+
"type": "FillLegendRow",
|
1170
|
+
"fill": {
|
1171
|
+
"color": "#ffffd4"
|
1172
|
+
},
|
1173
|
+
"title": "< 5 m"
|
1174
|
+
},
|
1175
|
+
{
|
1176
|
+
"type": "FillLegendRow",
|
1177
|
+
"fill": {
|
1178
|
+
"color": "#fed98e"
|
1179
|
+
},
|
1180
|
+
"title": "< 15 m"
|
1181
|
+
},
|
1182
|
+
{
|
1183
|
+
"type": "FillLegendRow",
|
1184
|
+
"fill": {
|
1185
|
+
"color": "#fe9929"
|
1186
|
+
},
|
1187
|
+
"title": "< 30 m"
|
1188
|
+
},
|
1189
|
+
{
|
1190
|
+
"type": "FillLegendRow",
|
1191
|
+
"fill": {
|
1192
|
+
"color": "#d95f0e"
|
1193
|
+
},
|
1194
|
+
"title": "< 65 m"
|
1195
|
+
},
|
1196
|
+
{
|
1197
|
+
"type": "FillLegendRow",
|
1198
|
+
"fill": {
|
1199
|
+
"color": "#993404"
|
1200
|
+
},
|
1201
|
+
"title": "> 65 m"
|
1202
|
+
}
|
1203
|
+
]
|
1204
|
+
}
|
1205
|
+
]
|
1206
|
+
}
|
1207
|
+
},
|
1208
|
+
{
|
1209
|
+
"name": "MeasuredHeightBlue",
|
1210
|
+
"type": "DeclarativeStyleItem",
|
1211
|
+
"title": "Measured Height (blue)",
|
1212
|
+
"declarativeStyle": {
|
1213
|
+
"show": "true",
|
1214
|
+
"color": {
|
1215
|
+
"conditions": [
|
1216
|
+
[
|
1217
|
+
"${attributes.measuredHeight} === undefined",
|
1218
|
+
"color('#045a8d')"
|
1219
|
+
],
|
1220
|
+
[
|
1221
|
+
"${attributes.measuredHeight} < 5",
|
1222
|
+
"color('#f1eef6')"
|
1223
|
+
],
|
1224
|
+
[
|
1225
|
+
"${attributes.measuredHeight} < 15",
|
1226
|
+
"color('#bdc9e1')"
|
1227
|
+
],
|
1228
|
+
[
|
1229
|
+
"${attributes.measuredHeight} < 30",
|
1230
|
+
"color('#74a9cf')"
|
1231
|
+
],
|
1232
|
+
[
|
1233
|
+
"${attributes.measuredHeight} < 65",
|
1234
|
+
"color('#2b8cbe')"
|
1235
|
+
],
|
1236
|
+
[
|
1237
|
+
"true",
|
1238
|
+
"color('#045a8d')"
|
1239
|
+
]
|
1240
|
+
]
|
1241
|
+
}
|
1242
|
+
},
|
1243
|
+
"properties": {
|
1244
|
+
"legend": [
|
1245
|
+
{
|
1246
|
+
"type": "StyleLegendItem",
|
1247
|
+
"colNr": 1,
|
1248
|
+
"rows": [
|
1249
|
+
{
|
1250
|
+
"type": "FillLegendRow",
|
1251
|
+
"fill": {
|
1252
|
+
"color": "#f1eef6"
|
1253
|
+
},
|
1254
|
+
"title": "< 5 m"
|
1255
|
+
},
|
1256
|
+
{
|
1257
|
+
"type": "FillLegendRow",
|
1258
|
+
"fill": {
|
1259
|
+
"color": "#bdc9e1"
|
1260
|
+
},
|
1261
|
+
"title": "< 15 m"
|
1262
|
+
},
|
1263
|
+
{
|
1264
|
+
"type": "FillLegendRow",
|
1265
|
+
"fill": {
|
1266
|
+
"color": "#74a9cf"
|
1267
|
+
},
|
1268
|
+
"title": "< 30 m"
|
1269
|
+
},
|
1270
|
+
{
|
1271
|
+
"type": "FillLegendRow",
|
1272
|
+
"fill": {
|
1273
|
+
"color": "#2b8cbe"
|
1274
|
+
},
|
1275
|
+
"title": "< 65 m"
|
1276
|
+
},
|
1277
|
+
{
|
1278
|
+
"type": "FillLegendRow",
|
1279
|
+
"fill": {
|
1280
|
+
"color": "#045a8d"
|
1281
|
+
},
|
1282
|
+
"title": "> 65 m"
|
1283
|
+
}
|
1284
|
+
]
|
1285
|
+
}
|
1286
|
+
]
|
1287
|
+
}
|
1288
|
+
},
|
1289
|
+
{
|
1290
|
+
"type": "DeclarativeStyleItem",
|
1291
|
+
"title": "Classified by Roof Type",
|
1292
|
+
"declarativeStyle": {
|
1293
|
+
"show": "true",
|
1294
|
+
"color": {
|
1295
|
+
"conditions": [
|
1296
|
+
[
|
1297
|
+
"${attributes.roofType} === undefined",
|
1298
|
+
"color('#cccccc')"
|
1299
|
+
],
|
1300
|
+
[
|
1301
|
+
"${attributes.roofType} === '1000' ",
|
1302
|
+
"color('#91cf60')"
|
1303
|
+
],
|
1304
|
+
[
|
1305
|
+
"${attributes.roofType} === '2100' ",
|
1306
|
+
"color('#fee08b')"
|
1307
|
+
],
|
1308
|
+
[
|
1309
|
+
"${attributes.roofType} === '2200' ",
|
1310
|
+
"color('#8dd3c7')"
|
1311
|
+
],
|
1312
|
+
[
|
1313
|
+
"${attributes.roofType} === '3100' ",
|
1314
|
+
"color('#8dd3c7')"
|
1315
|
+
],
|
1316
|
+
[
|
1317
|
+
"${attributes.roofType} === '3200' ",
|
1318
|
+
"color('#fc8d59')"
|
1319
|
+
],
|
1320
|
+
[
|
1321
|
+
"${attributes.roofType} === '3300' ",
|
1322
|
+
"color('#ffffb3')"
|
1323
|
+
],
|
1324
|
+
[
|
1325
|
+
"${attributes.roofType} === '3400' ",
|
1326
|
+
"color('#bebada')"
|
1327
|
+
],
|
1328
|
+
[
|
1329
|
+
"${attributes.roofType} === '3500' ",
|
1330
|
+
"color('#ffffbf')"
|
1331
|
+
],
|
1332
|
+
[
|
1333
|
+
"${attributes.roofType} === '3600' ",
|
1334
|
+
"color('#fdb462')"
|
1335
|
+
],
|
1336
|
+
[
|
1337
|
+
"${attributes.roofType} === '3700' ",
|
1338
|
+
"color('#b3de69')"
|
1339
|
+
],
|
1340
|
+
[
|
1341
|
+
"${attributes.roofType} === '3800' ",
|
1342
|
+
"color('#ecc34e')"
|
1343
|
+
],
|
1344
|
+
[
|
1345
|
+
"${attributes.roofType} === '3900' ",
|
1346
|
+
"color('#fccde5')"
|
1347
|
+
],
|
1348
|
+
[
|
1349
|
+
"${attributes.roofType} === '4000' ",
|
1350
|
+
"color('#d590b3')"
|
1351
|
+
],
|
1352
|
+
[
|
1353
|
+
"${attributes.roofType} === '5000' ",
|
1354
|
+
"color('#888888')"
|
1355
|
+
],
|
1356
|
+
[
|
1357
|
+
"${attributes.roofType} === '9999' ",
|
1358
|
+
"color('#cccccc')"
|
1359
|
+
],
|
1360
|
+
[
|
1361
|
+
"true",
|
1362
|
+
"color('#cccccc')"
|
1363
|
+
]
|
1364
|
+
]
|
1365
|
+
}
|
1366
|
+
},
|
1367
|
+
"properties": {
|
1368
|
+
"legend": [
|
1369
|
+
{
|
1370
|
+
"type": "StyleLegendItem",
|
1371
|
+
"rows": [
|
1372
|
+
{
|
1373
|
+
"type": "FillLegendRow",
|
1374
|
+
"fill": {
|
1375
|
+
"color": "#91cf60"
|
1376
|
+
},
|
1377
|
+
"title": "Flachdach"
|
1378
|
+
},
|
1379
|
+
{
|
1380
|
+
"type": "FillLegendRow",
|
1381
|
+
"fill": {
|
1382
|
+
"color": "#fee08b"
|
1383
|
+
},
|
1384
|
+
"title": "Pultdach"
|
1385
|
+
},
|
1386
|
+
{
|
1387
|
+
"type": "FillLegendRow",
|
1388
|
+
"fill": {
|
1389
|
+
"color": "#8dd3c7"
|
1390
|
+
},
|
1391
|
+
"title": "Versetztes Pultdach"
|
1392
|
+
},
|
1393
|
+
{
|
1394
|
+
"type": "FillLegendRow",
|
1395
|
+
"fill": {
|
1396
|
+
"color": "#8dd3c7"
|
1397
|
+
},
|
1398
|
+
"title": "Satteldach"
|
1399
|
+
},
|
1400
|
+
{
|
1401
|
+
"type": "FillLegendRow",
|
1402
|
+
"fill": {
|
1403
|
+
"color": "#fc8d59"
|
1404
|
+
},
|
1405
|
+
"title": "Walmdach"
|
1406
|
+
},
|
1407
|
+
{
|
1408
|
+
"type": "FillLegendRow",
|
1409
|
+
"fill": {
|
1410
|
+
"color": "#ffffb3"
|
1411
|
+
},
|
1412
|
+
"title": "Krüppelwalmdach"
|
1413
|
+
},
|
1414
|
+
{
|
1415
|
+
"type": "FillLegendRow",
|
1416
|
+
"fill": {
|
1417
|
+
"color": "#bebada"
|
1418
|
+
},
|
1419
|
+
"title": "Mansardendach"
|
1420
|
+
},
|
1421
|
+
{
|
1422
|
+
"type": "FillLegendRow",
|
1423
|
+
"fill": {
|
1424
|
+
"color": "#ffffbf"
|
1425
|
+
},
|
1426
|
+
"title": "Zeltdach"
|
1427
|
+
},
|
1428
|
+
{
|
1429
|
+
"type": "FillLegendRow",
|
1430
|
+
"fill": {
|
1431
|
+
"color": "#fdb462"
|
1432
|
+
},
|
1433
|
+
"title": "Kegeldach"
|
1434
|
+
},
|
1435
|
+
{
|
1436
|
+
"type": "FillLegendRow",
|
1437
|
+
"fill": {
|
1438
|
+
"color": "#b3de69"
|
1439
|
+
},
|
1440
|
+
"title": "Kuppeldach"
|
1441
|
+
},
|
1442
|
+
{
|
1443
|
+
"type": "FillLegendRow",
|
1444
|
+
"fill": {
|
1445
|
+
"color": "#ecc34e"
|
1446
|
+
},
|
1447
|
+
"title": "Sheddach"
|
1448
|
+
},
|
1449
|
+
{
|
1450
|
+
"type": "FillLegendRow",
|
1451
|
+
"fill": {
|
1452
|
+
"color": "#fccde5"
|
1453
|
+
},
|
1454
|
+
"title": "Bogendach"
|
1455
|
+
},
|
1456
|
+
{
|
1457
|
+
"type": "FillLegendRow",
|
1458
|
+
"fill": {
|
1459
|
+
"color": "#d590b3"
|
1460
|
+
},
|
1461
|
+
"title": "Turmdach"
|
1462
|
+
},
|
1463
|
+
{
|
1464
|
+
"type": "FillLegendRow",
|
1465
|
+
"fill": {
|
1466
|
+
"color": "#888888"
|
1467
|
+
},
|
1468
|
+
"title": "Mischform"
|
1469
|
+
},
|
1470
|
+
{
|
1471
|
+
"type": "FillLegendRow",
|
1472
|
+
"fill": {
|
1473
|
+
"color": "#cccccc"
|
1474
|
+
},
|
1475
|
+
"title": "Sonstiges"
|
1476
|
+
}
|
1477
|
+
]
|
1478
|
+
}
|
1479
|
+
]
|
1480
|
+
},
|
1481
|
+
"name": "ClassifiedbyRoofType"
|
1482
|
+
},
|
1483
|
+
{
|
1484
|
+
"type": "DeclarativeStyleItem",
|
1485
|
+
"title": "Einfärbung nach Gebäudefunktion",
|
1486
|
+
"declarativeStyle": {
|
1487
|
+
"show": "true",
|
1488
|
+
"color": {
|
1489
|
+
"conditions": [
|
1490
|
+
[
|
1491
|
+
"${attributes.function} === undefined",
|
1492
|
+
"color('#d9d9d9')"
|
1493
|
+
],
|
1494
|
+
[
|
1495
|
+
"${attributes.function} === '1121' ",
|
1496
|
+
"color('#7fc97f')"
|
1497
|
+
],
|
1498
|
+
[
|
1499
|
+
"${attributes.function} === '1004' ",
|
1500
|
+
"color('#beaed4')"
|
1501
|
+
],
|
1502
|
+
[
|
1503
|
+
"${attributes.function} === '1799' ",
|
1504
|
+
"color('#fdc086')"
|
1505
|
+
],
|
1506
|
+
[
|
1507
|
+
"${attributes.function} === '1231' ",
|
1508
|
+
"color('#ffff99')"
|
1509
|
+
],
|
1510
|
+
[
|
1511
|
+
"true",
|
1512
|
+
"color('#d9d9d9')"
|
1513
|
+
]
|
1514
|
+
]
|
1515
|
+
}
|
1516
|
+
},
|
1517
|
+
"properties": {
|
1518
|
+
"legend": [
|
1519
|
+
{
|
1520
|
+
"type": "StyleLegendItem",
|
1521
|
+
"rows": [
|
1522
|
+
{
|
1523
|
+
"type": "FillLegendRow",
|
1524
|
+
"fill": {
|
1525
|
+
"color": "#7fc97f"
|
1526
|
+
},
|
1527
|
+
"title": "1121"
|
1528
|
+
},
|
1529
|
+
{
|
1530
|
+
"type": "FillLegendRow",
|
1531
|
+
"fill": {
|
1532
|
+
"color": "#fdb462"
|
1533
|
+
},
|
1534
|
+
"title": "1004"
|
1535
|
+
},
|
1536
|
+
{
|
1537
|
+
"type": "FillLegendRow",
|
1538
|
+
"fill": {
|
1539
|
+
"color": "#fdc086"
|
1540
|
+
},
|
1541
|
+
"title": "1799"
|
1542
|
+
},
|
1543
|
+
{
|
1544
|
+
"type": "FillLegendRow",
|
1545
|
+
"fill": {
|
1546
|
+
"color": "#ffff99"
|
1547
|
+
},
|
1548
|
+
"title": "1231"
|
1549
|
+
},
|
1550
|
+
{
|
1551
|
+
"type": "FillLegendRow",
|
1552
|
+
"fill": {
|
1553
|
+
"color": "#cccccc"
|
1554
|
+
},
|
1555
|
+
"title": "other function"
|
1556
|
+
}
|
1557
|
+
|
1558
|
+
]
|
1559
|
+
}
|
1560
|
+
]
|
1561
|
+
},
|
1562
|
+
"name": "BuildingFunction"
|
1563
|
+
},
|
1564
|
+
{
|
1565
|
+
"type": "DeclarativeStyleItem",
|
1566
|
+
"name": "Transparentbuildings",
|
1567
|
+
"title": "Transparent buildings",
|
1568
|
+
"declarativeStyle": {
|
1569
|
+
"show": "true",
|
1570
|
+
"color": {
|
1571
|
+
"conditions": [
|
1572
|
+
[
|
1573
|
+
"true",
|
1574
|
+
"color('#cccccc', 0.7)"
|
1575
|
+
]
|
1576
|
+
]
|
1577
|
+
}
|
1578
|
+
},
|
1579
|
+
"properties": {
|
1580
|
+
"legend": [
|
1581
|
+
{
|
1582
|
+
"type": "StyleLegendItem",
|
1583
|
+
"rows": [
|
1584
|
+
{
|
1585
|
+
"type": "FillLegendRow",
|
1586
|
+
"fill": {
|
1587
|
+
"color": "#cccccc"
|
1588
|
+
},
|
1589
|
+
"title": "Transparent buildings"
|
1590
|
+
}
|
1591
|
+
]
|
1592
|
+
}
|
1593
|
+
]
|
1594
|
+
}
|
981
1595
|
}
|
982
1596
|
],
|
983
1597
|
"featureInfo": [
|
@@ -1022,14 +1636,18 @@
|
|
1022
1636
|
},
|
1023
1637
|
{
|
1024
1638
|
"type": "BalloonFeatureInfoView",
|
1025
|
-
"name": "
|
1026
|
-
"
|
1639
|
+
"name": "waterHeight",
|
1640
|
+
"keyMapping": {
|
1641
|
+
"Wasserhöhe": "featureInfo.waterHeight"
|
1642
|
+
},
|
1027
1643
|
"attributeKeys": ["Wasserhöhe"]
|
1028
1644
|
},
|
1029
1645
|
{
|
1030
1646
|
"type": "BalloonFeatureInfoView",
|
1031
|
-
"name": "
|
1032
|
-
"
|
1647
|
+
"name": "waterSpeed",
|
1648
|
+
"keyMapping": {
|
1649
|
+
"Geschwindigkeit": "featureInfo.waterSpeed"
|
1650
|
+
},
|
1033
1651
|
"attributeKeys": ["Geschwindigkeit"]
|
1034
1652
|
},
|
1035
1653
|
{
|
@@ -1188,22 +1806,23 @@
|
|
1188
1806
|
"type": "LayerGroupContentTreeItem",
|
1189
1807
|
"name": "germany.lod2",
|
1190
1808
|
"layerNames": [
|
1191
|
-
"
|
1192
|
-
"
|
1193
|
-
"
|
1194
|
-
"
|
1195
|
-
"
|
1196
|
-
"
|
1197
|
-
"
|
1198
|
-
"
|
1199
|
-
"
|
1809
|
+
"Bayern - LOD2 (pbr)",
|
1810
|
+
"Berlin untexturiert openData (pbr recalculation)",
|
1811
|
+
"Brandenburg - LOD2 (pbr recalculation)",
|
1812
|
+
"Hamburg - LOD2 (pbr recalculation)",
|
1813
|
+
"Hessen - LOD2 (pbr recalculation)",
|
1814
|
+
"NRW - LOD2 (pbr recalculation)",
|
1815
|
+
"Niedersachsen (pbr recalculation)",
|
1816
|
+
"Sachsen - LOD2 (pbr recalculation)",
|
1817
|
+
"Sachsen-Anhalt - LOD2 (pbr recalculation)",
|
1818
|
+
"Thüringen - LOD2 (pbr recalculation)",
|
1200
1819
|
"GermanyBaseTerrain"
|
1201
1820
|
],
|
1202
1821
|
"layerNamesToDeactivate": [
|
1203
1822
|
"mesh_surface",
|
1204
1823
|
"Mesh Classification Layer"
|
1205
1824
|
],
|
1206
|
-
"title": "
|
1825
|
+
"title": "layer.buildings"
|
1207
1826
|
},
|
1208
1827
|
{
|
1209
1828
|
"type": "NodeContentTreeItem",
|
@@ -1219,15 +1838,16 @@
|
|
1219
1838
|
"mesh_surface"
|
1220
1839
|
],
|
1221
1840
|
"layerNamesToDeactivate": [
|
1222
|
-
"
|
1223
|
-
"
|
1224
|
-
"
|
1225
|
-
"
|
1226
|
-
"
|
1227
|
-
"
|
1228
|
-
"
|
1229
|
-
"
|
1230
|
-
"
|
1841
|
+
"Bayern - LOD2 (pbr)",
|
1842
|
+
"Berlin untexturiert openData (pbr recalculation)",
|
1843
|
+
"Brandenburg - LOD2 (pbr recalculation)",
|
1844
|
+
"Hamburg - LOD2 (pbr recalculation)",
|
1845
|
+
"Hessen - LOD2 (pbr recalculation)",
|
1846
|
+
"NRW - LOD2 (pbr recalculation)",
|
1847
|
+
"Niedersachsen (pbr recalculation)",
|
1848
|
+
"Sachsen - LOD2 (pbr recalculation)",
|
1849
|
+
"Sachsen-Anhalt - LOD2 (pbr recalculation)",
|
1850
|
+
"Thüringen - LOD2 (pbr recalculation)",
|
1231
1851
|
"GermanyBaseTerrain"
|
1232
1852
|
],
|
1233
1853
|
"title": "3D-Mesh 2020"
|
@@ -1235,7 +1855,12 @@
|
|
1235
1855
|
{
|
1236
1856
|
"type": "LayerContentTreeItem",
|
1237
1857
|
"name": "berlin.texturedBuildings",
|
1238
|
-
"layerName": "Berlin
|
1858
|
+
"layerName": "Berlin textured OpenData (pbr recalculation)"
|
1859
|
+
},
|
1860
|
+
{
|
1861
|
+
"type": "LayerContentTreeItem",
|
1862
|
+
"name": "berlin.untexturedBuildings",
|
1863
|
+
"layerName": "Berlin untexturiert openData (pbr recalculation)"
|
1239
1864
|
},
|
1240
1865
|
{
|
1241
1866
|
"type": "LayerContentTreeItem",
|
@@ -1272,7 +1897,7 @@
|
|
1272
1897
|
},
|
1273
1898
|
{
|
1274
1899
|
"type": "LayerContentTreeItem",
|
1275
|
-
"name": "thematic.
|
1900
|
+
"name": "thematic.waterHeight",
|
1276
1901
|
"layerName": "Wasserhöhen selten - NRW WMS"
|
1277
1902
|
},
|
1278
1903
|
{
|
@@ -1310,6 +1935,10 @@
|
|
1310
1935
|
"fax": "+49 (0) 30 . 8904 . 871 . 0"
|
1311
1936
|
}
|
1312
1937
|
},
|
1938
|
+
{
|
1939
|
+
"name": "@vcmap/swipe-tool",
|
1940
|
+
"entry": "plugins/@vcmap/swipe-tool/index.js"
|
1941
|
+
},
|
1313
1942
|
{
|
1314
1943
|
"name": "@vcmap/search-nominatim",
|
1315
1944
|
"entry": "plugins/@vcmap/search-nominatim/index.js"
|