@vcmap/ui 5.0.2 → 5.1.0-rc.2
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 +2 -2
- package/build/buildTypes.js +176 -0
- package/build/lintTypes.js +30 -0
- package/config/aerowest.config.json +4 -0
- package/config/base.config.json +22 -0
- package/config/dev.config.json +176 -5
- package/config/www.config.json +32 -0
- package/dist/assets/{cesium.a3a1dc.js → cesium.b97c3b.js} +1859 -1828
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core.bb64ed.js → core.5b03e5.js} +5859 -5041
- package/dist/assets/core.js +1 -1
- package/dist/assets/index-92075a75.js +1 -0
- package/dist/assets/{ol.833fa9.js → ol.0cd250.js} +7257 -7252
- package/dist/assets/ol.js +1 -1
- package/dist/assets/{ui.aeb2ec.css → ui.67779e.css} +2 -2
- package/dist/assets/{ui.aeb2ec.js → ui.67779e.js} +14199 -9198
- package/dist/assets/ui.js +1 -1
- package/dist/assets/{vue.8e1850.js → vue.62ecd5.js} +1243 -1234
- package/dist/assets/vue.js +2 -2
- package/dist/assets/{vuetify.3ed426.css → vuetify.3b3e23.css} +1 -1
- package/dist/assets/{vuetify.3ed426.js → vuetify.3b3e23.js} +155 -154
- package/dist/assets/vuetify.js +2 -2
- package/dist/index.html +1 -1
- package/index.d.ts +256 -0
- package/index.js +48 -11
- package/package.json +21 -14
- package/plugins/@vcmap-show-case/buttons-example/src/ButtonsExample.vue +3 -0
- package/plugins/@vcmap-show-case/category-tester/src/CategoriesExample.vue +312 -43
- package/plugins/@vcmap-show-case/category-tester/src/CollectionComponentOptions.vue +48 -182
- package/plugins/@vcmap-show-case/category-tester/src/FoobarEditor.vue +118 -0
- package/plugins/@vcmap-show-case/category-tester/src/importExportHelper.js +29 -0
- package/plugins/@vcmap-show-case/category-tester/src/index.js +16 -0
- package/plugins/@vcmap-show-case/collection-manager-example/src/CollectionManagerExample.vue +2 -1
- package/plugins/@vcmap-show-case/collection-manager-example/src/index.js +8 -4
- package/plugins/@vcmap-show-case/extent-example/README.md +3 -0
- package/plugins/@vcmap-show-case/extent-example/package.json +5 -0
- package/plugins/@vcmap-show-case/extent-example/src/ExtentExample.vue +71 -0
- package/plugins/@vcmap-show-case/extent-example/src/index.js +68 -0
- package/plugins/@vcmap-show-case/flight-component-example/README.md +3 -0
- package/plugins/@vcmap-show-case/flight-component-example/package.json +5 -0
- package/plugins/@vcmap-show-case/flight-component-example/src/FlightExample.vue +53 -0
- package/plugins/@vcmap-show-case/flight-component-example/src/index.js +42 -0
- package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +78 -5
- package/plugins/@vcmap-show-case/hello-world/src/helloWorld.vue +2 -2
- package/plugins/@vcmap-show-case/list-example/src/ListExample.vue +22 -10
- package/plugins/@vcmap-show-case/toolbox-example/README.md +9 -0
- package/plugins/@vcmap-show-case/toolbox-example/package.json +5 -0
- package/plugins/@vcmap-show-case/toolbox-example/src/TriStateExampleWindow.vue +21 -0
- package/plugins/@vcmap-show-case/toolbox-example/src/dummyToolboxActions.js +94 -0
- package/plugins/@vcmap-show-case/toolbox-example/src/index.js +260 -0
- package/plugins/@vcmap-show-case/vector-properties-example/src/VectorPropertiesExample.vue +12 -2
- package/plugins/@vcmap-show-case/viewpoint-component-example/README.md +3 -0
- package/plugins/@vcmap-show-case/viewpoint-component-example/package.json +5 -0
- package/plugins/@vcmap-show-case/viewpoint-component-example/src/ViewpointExample.vue +52 -0
- package/plugins/@vcmap-show-case/viewpoint-component-example/src/index.js +42 -0
- package/plugins/@vcmap-show-case/window-tester/src/WindowExample.vue +31 -1
- package/plugins/@vcmap-show-case/window-tester/src/WindowExampleToggleChild.vue +20 -16
- package/plugins/@vcmap-show-case/window-tester/src/index.js +2 -17
- package/plugins/package.json +6 -2
- package/src/actions/StyleSelector.vue +8 -7
- package/src/actions/StyleSelector.vue.d.ts +27 -0
- package/src/actions/actionHelper.d.ts +153 -0
- package/src/actions/actionHelper.js +36 -19
- package/src/actions/extentActions.d.ts +40 -0
- package/src/actions/extentActions.js +359 -0
- package/src/actions/flightActions.d.ts +59 -0
- package/src/actions/flightActions.js +232 -0
- package/src/actions/listActions.d.ts +63 -0
- package/src/actions/listActions.js +185 -0
- package/src/actions/stateRefAction.d.ts +19 -0
- package/src/actions/stateRefAction.js +1 -1
- package/src/application/VcsApp.vue +103 -28
- package/src/application/VcsApp.vue.d.ts +86 -0
- package/src/application/VcsAppWrapper.vue.d.ts +12 -0
- package/src/application/VcsAttributions.vue.d.ts +14 -0
- package/src/application/VcsAttributionsFooter.vue +1 -4
- package/src/application/VcsAttributionsFooter.vue.d.ts +26 -0
- package/src/application/VcsMap.vue.d.ts +12 -0
- package/src/application/VcsNavbar.vue.d.ts +45 -0
- package/src/application/VcsPositionDisplay.vue +208 -0
- package/src/application/VcsPositionDisplay.vue.d.ts +18 -0
- package/src/application/VcsSettings.vue.d.ts +5 -0
- package/src/application/VcsTextPage.vue +65 -0
- package/src/application/VcsTextPage.vue.d.ts +16 -0
- package/src/application/VcsTextPageFooter.vue +89 -0
- package/src/application/VcsTextPageFooter.vue.d.ts +22 -0
- package/src/application/attributionsHelper.d.ts +64 -0
- package/src/application/attributionsHelper.js +1 -1
- package/src/application/markdownHelper.d.ts +5 -0
- package/src/application/markdownHelper.js +11 -0
- package/src/application/positionDisplayInteraction.d.ts +42 -0
- package/src/application/positionDisplayInteraction.js +65 -0
- package/src/callback/activateLayersCallback.d.ts +29 -0
- package/src/callback/activateLayersCallback.js +2 -2
- package/src/callback/applyLayerStyleCallback.d.ts +36 -0
- package/src/callback/applyLayerStyleCallback.js +2 -2
- package/src/callback/deactivateLayersCallback.d.ts +29 -0
- package/src/callback/deactivateLayersCallback.js +2 -2
- package/src/callback/goToViewpointCallback.d.ts +29 -0
- package/src/callback/goToViewpointCallback.js +2 -2
- package/src/callback/vcsCallback.d.ts +44 -0
- package/src/callback/vcsCallback.js +4 -9
- package/src/components/ImageElementInjector.vue.d.ts +24 -0
- package/src/components/buttons/VcsActionButtonList.vue +24 -16
- package/src/components/buttons/VcsActionButtonList.vue.d.ts +68 -0
- package/src/components/buttons/VcsButton.vue +7 -0
- package/src/components/buttons/VcsButton.vue.d.ts +89 -0
- package/src/components/buttons/VcsFormButton.vue +9 -0
- package/src/components/buttons/VcsFormButton.vue.d.ts +91 -0
- package/src/components/buttons/VcsToolButton.vue +9 -0
- package/src/components/buttons/VcsToolButton.vue.d.ts +91 -0
- package/src/components/flight/VcsFlightAnchorsComponent.vue +329 -0
- package/src/components/flight/VcsFlightAnchorsComponent.vue.d.ts +45 -0
- package/src/components/flight/VcsFlightComponent.vue +284 -0
- package/src/components/flight/VcsFlightComponent.vue.d.ts +104 -0
- package/src/components/flight/VcsFlightEditor.vue +77 -0
- package/src/components/flight/VcsFlightEditor.vue.d.ts +34 -0
- package/src/components/flight/VcsFlightPlayer.vue +124 -0
- package/src/components/flight/VcsFlightPlayer.vue.d.ts +25 -0
- package/src/components/flight/composables.d.ts +11 -0
- package/src/components/flight/composables.js +39 -0
- package/src/components/form-inputs-controls/VcsCheckbox.vue.d.ts +18 -0
- package/src/components/form-inputs-controls/VcsChipArrayInput.vue.d.ts +82 -0
- package/src/components/form-inputs-controls/VcsCoordinate.vue +152 -0
- package/src/components/form-inputs-controls/VcsCoordinate.vue.d.ts +90 -0
- package/src/components/form-inputs-controls/VcsDatePicker.vue +2 -2
- package/src/components/form-inputs-controls/VcsDatePicker.vue.d.ts +31 -0
- package/src/components/form-inputs-controls/VcsExtent.vue +122 -0
- package/src/components/form-inputs-controls/VcsExtent.vue.d.ts +36 -0
- package/src/components/form-inputs-controls/VcsFormSection.vue +6 -1
- package/src/components/form-inputs-controls/VcsFormSection.vue.d.ts +75 -0
- package/src/components/form-inputs-controls/VcsLabel.vue +18 -0
- package/src/components/form-inputs-controls/VcsLabel.vue.d.ts +41 -0
- package/src/components/form-inputs-controls/VcsRadio.vue.d.ts +32 -0
- package/src/components/form-inputs-controls/VcsRadioGrid.vue.d.ts +35 -0
- package/src/components/form-inputs-controls/VcsSelect.vue.d.ts +31 -0
- package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +2 -0
- package/src/components/form-inputs-controls/VcsTextArea.vue.d.ts +22 -0
- package/src/components/form-inputs-controls/VcsTextField.vue +57 -10
- package/src/components/form-inputs-controls/VcsTextField.vue.d.ts +65 -0
- package/src/components/form-inputs-controls/VcsWizard.vue.d.ts +14 -0
- package/src/components/form-inputs-controls/VcsWizardStep.vue.d.ts +89 -0
- package/src/components/form-inputs-controls/composables.d.ts +7 -0
- package/src/components/form-inputs-controls/composables.js +1 -1
- package/src/components/form-output/VcsFormattedNumber.vue +13 -2
- package/src/components/form-output/VcsFormattedNumber.vue.d.ts +89 -0
- package/src/components/icons/+all.d.ts +9 -0
- package/src/components/icons/+all.js +16 -0
- package/src/components/icons/2DAreaIcon.vue.d.ts +2 -0
- package/src/components/icons/2DDistanceIcon.vue.d.ts +2 -0
- package/src/components/icons/2DHeightObliqueIcon.vue +20 -0
- package/src/components/icons/2DHeightObliqueIcon.vue.d.ts +2 -0
- package/src/components/icons/3DAreaIcon.vue.d.ts +2 -0
- package/src/components/icons/3DDistanceIcon.vue.d.ts +2 -0
- package/src/components/icons/3DHeightIcon.vue.d.ts +2 -0
- package/src/components/icons/AngleIcon.vue.d.ts +2 -0
- package/src/components/icons/AssociationsIcon.vue.d.ts +2 -0
- package/src/components/icons/AxisIcon.vue.d.ts +2 -0
- package/src/components/icons/BoundingBoxIcon.vue.d.ts +2 -0
- package/src/components/icons/CheckboxCheckedIcon.vue.d.ts +2 -0
- package/src/components/icons/CheckboxIcon.vue.d.ts +2 -0
- package/src/components/icons/CheckboxIndeterminateIcon.vue.d.ts +2 -0
- package/src/components/icons/CircleIcon.vue.d.ts +2 -0
- package/src/components/icons/ClippingHorizontalIcon.vue.d.ts +2 -0
- package/src/components/icons/ClippingIcon.vue.d.ts +2 -0
- package/src/components/icons/ClippingVerticalIcon.vue.d.ts +2 -0
- package/src/components/icons/ColorPickerIcon.vue.d.ts +2 -0
- package/src/components/icons/ColorSwatchIcon.vue.d.ts +2 -0
- package/src/components/icons/CommentIcon.vue.d.ts +2 -0
- package/src/components/icons/CompassIcon.vue.d.ts +2 -0
- package/src/components/icons/ComponentsIcon.vue.d.ts +2 -0
- package/src/components/icons/ComponentsPlusIcon.vue +17 -0
- package/src/components/icons/ComponentsPlusIcon.vue.d.ts +2 -0
- package/src/components/icons/ConeIcon.vue.d.ts +2 -0
- package/src/components/icons/DimensionsHouseIcon.vue.d.ts +2 -0
- package/src/components/icons/EditIcon.vue.d.ts +2 -0
- package/src/components/icons/EditVerticesIcon.vue.d.ts +2 -0
- package/src/components/icons/ElevationProfileIcon.vue.d.ts +2 -0
- package/src/components/icons/ExportAreaIcon.vue.d.ts +2 -0
- package/src/components/icons/ExportFlightIcon.vue.d.ts +2 -0
- package/src/components/icons/ExportIcon.vue.d.ts +2 -0
- package/src/components/icons/ExternalLinkIcon.vue.d.ts +2 -0
- package/src/components/icons/EyeIcon.vue.d.ts +2 -0
- package/src/components/icons/FastForwardIcon.vue.d.ts +2 -0
- package/src/components/icons/FilterIcon.vue.d.ts +2 -0
- package/src/components/icons/GlobalTerrainIcon.vue.d.ts +2 -0
- package/src/components/icons/GlobeNatureIcon.vue.d.ts +2 -0
- package/src/components/icons/GroundIcon.vue.d.ts +2 -0
- package/src/components/icons/HealthCareIndustriesIcon.vue.d.ts +2 -0
- package/src/components/icons/HelpIcon.vue.d.ts +2 -0
- package/src/components/icons/HideIcon.vue.d.ts +2 -0
- package/src/components/icons/HomePointIcon.vue.d.ts +2 -0
- package/src/components/icons/HospitalsIcon.vue.d.ts +2 -0
- package/src/components/icons/HouseIcon.vue.d.ts +2 -0
- package/src/components/icons/ImportIcon.vue.d.ts +2 -0
- package/src/components/icons/InfoIcon.vue.d.ts +2 -0
- package/src/components/icons/KebabIcon.vue.d.ts +2 -0
- package/src/components/icons/LabelIcon.vue.d.ts +2 -0
- package/src/components/icons/LayersIcon.vue.d.ts +2 -0
- package/src/components/icons/LegendIcon.vue.d.ts +2 -0
- package/src/components/icons/LineIcon.vue.d.ts +2 -0
- package/src/components/icons/LinkIcon.vue.d.ts +2 -0
- package/src/components/icons/LogoutIcon.vue.d.ts +2 -0
- package/src/components/icons/MapIcon.vue.d.ts +2 -0
- package/src/components/icons/MenuIcon.vue.d.ts +2 -0
- package/src/components/icons/MinusIcon.vue.d.ts +2 -0
- package/src/components/icons/MultiViewIcon.vue +16 -0
- package/src/components/icons/MultiViewIcon.vue.d.ts +2 -0
- package/src/components/icons/ObjectAttributeIcon.vue.d.ts +2 -0
- package/src/components/icons/ObjectSelectIcon.vue.d.ts +2 -0
- package/src/components/icons/ObliqueViewIcon.vue.d.ts +2 -0
- package/src/components/icons/PdfIcon.vue.d.ts +2 -0
- package/src/components/icons/PedestrianIcon.vue.d.ts +2 -0
- package/src/components/icons/PenIcon.vue.d.ts +2 -0
- package/src/components/icons/PlayCircleIcon.vue.d.ts +2 -0
- package/src/components/icons/PlusIcon.vue.d.ts +2 -0
- package/src/components/icons/PoiIcon.vue.d.ts +2 -0
- package/src/components/icons/PointIcon.vue.d.ts +2 -0
- package/src/components/icons/PointMeasurementIcon.vue +36 -0
- package/src/components/icons/PointMeasurementIcon.vue.d.ts +2 -0
- package/src/components/icons/PointSelectIcon.vue.d.ts +2 -0
- package/src/components/icons/PresentationModeIcon.vue.d.ts +2 -0
- package/src/components/icons/ProgressIcon.vue.d.ts +2 -0
- package/src/components/icons/QueryIcon.vue.d.ts +2 -0
- package/src/components/icons/RectangleIcon.vue.d.ts +2 -0
- package/src/components/icons/ReturnIcon.vue.d.ts +2 -0
- package/src/components/icons/RewindIcon.vue.d.ts +2 -0
- package/src/components/icons/RotateLeftIcon.vue.d.ts +2 -0
- package/src/components/icons/RotateRightIcon.vue.d.ts +2 -0
- package/src/components/icons/ScreenshotIcon.vue.d.ts +2 -0
- package/src/components/icons/SearchIcon.vue.d.ts +2 -0
- package/src/components/icons/ShadowIcon.vue.d.ts +2 -0
- package/src/components/icons/ShapesIcon.vue.d.ts +2 -0
- package/src/components/icons/ShareIcon.vue.d.ts +2 -0
- package/src/components/icons/SimpleCircleFilledIcon.vue.d.ts +2 -0
- package/src/components/icons/SimpleCircleHalfFilledIcon.vue.d.ts +2 -0
- package/src/components/icons/SimpleCircleOutlinedIcon.vue.d.ts +2 -0
- package/src/components/icons/SkipNextIcon.vue.d.ts +2 -0
- package/src/components/icons/SkipPreviousIcon.vue.d.ts +2 -0
- package/src/components/icons/SplitViewIcon.vue.d.ts +2 -0
- package/src/components/icons/TerrainBoxIcon.vue.d.ts +2 -0
- package/src/components/icons/TextStyleIcon.vue.d.ts +2 -0
- package/src/components/icons/ThreeDimensionsIcon.vue.d.ts +2 -0
- package/src/components/icons/ToolsIcon.vue.d.ts +2 -0
- package/src/components/icons/TouchIcon.vue.d.ts +2 -0
- package/src/components/icons/TrashCanIcon.vue.d.ts +2 -0
- package/src/components/icons/TriangleIcon.vue.d.ts +2 -0
- package/src/components/icons/TwoDimensionsIcon.vue.d.ts +2 -0
- package/src/components/icons/UploadIcon.vue.d.ts +2 -0
- package/src/components/icons/UserProfileIcon.vue.d.ts +2 -0
- package/src/components/icons/UserShareIcon.vue.d.ts +2 -0
- package/src/components/icons/VideoRecorderIcon.vue.d.ts +2 -0
- package/src/components/icons/ViewpointFlightIcon.vue.d.ts +2 -0
- package/src/components/icons/ViewpointIcon.vue.d.ts +2 -0
- package/src/components/icons/Viewshed360Icon.vue.d.ts +2 -0
- package/src/components/icons/ViewshedConeIcon.vue.d.ts +2 -0
- package/src/components/icons/ViewshedIcon.vue.d.ts +2 -0
- package/src/components/icons/WalkingIcon.vue.d.ts +2 -0
- package/src/components/icons/WallIcon.vue.d.ts +2 -0
- package/src/components/icons/WandIcon.vue.d.ts +2 -0
- package/src/components/import/FileDrop.vue +69 -0
- package/src/components/import/FileDrop.vue.d.ts +26 -0
- package/src/components/import/ImportComponent.vue +78 -0
- package/src/components/import/ImportComponent.vue.d.ts +34 -0
- package/src/components/lists/VcsActionList.vue +8 -15
- package/src/components/lists/VcsActionList.vue.d.ts +66 -0
- package/src/components/lists/VcsList.vue +207 -116
- package/src/components/lists/VcsList.vue.d.ts +227 -0
- package/src/components/lists/VcsTreeview.vue +3 -1
- package/src/components/lists/VcsTreeview.vue.d.ts +28 -0
- package/src/components/lists/VcsTreeviewLeaf.vue +1 -0
- package/src/components/lists/VcsTreeviewLeaf.vue.d.ts +19 -0
- package/src/components/lists/VcsTreeviewSearchbar.vue.d.ts +41 -0
- package/src/components/notification/VcsBadge.vue.d.ts +14 -0
- package/src/components/notification/VcsHelp.vue.d.ts +22 -0
- package/src/components/notification/VcsTooltip.vue.d.ts +27 -0
- package/src/components/notification/validation.d.ts +8 -0
- package/src/components/notification/validation.js +3 -2
- package/src/components/plugins/AbstractConfigEditor.vue +25 -4
- package/src/components/plugins/AbstractConfigEditor.vue.d.ts +55 -0
- package/src/components/style/MenuWrapper.vue.d.ts +55 -0
- package/src/components/style/VcsFeatureStyleComponent.vue +389 -0
- package/src/components/style/VcsFeatureStyleComponent.vue.d.ts +31 -0
- package/src/components/style/VcsFillMenu.vue.d.ts +34 -0
- package/src/components/style/VcsFillSelector.vue.d.ts +22 -0
- package/src/components/style/VcsImageMenu.vue.d.ts +43 -0
- package/src/components/style/VcsImageSelector.vue.d.ts +128 -0
- package/src/components/style/VcsStrokeMenu.vue.d.ts +34 -0
- package/src/components/style/VcsStrokeSelector.vue.d.ts +23 -0
- package/src/components/style/VcsTextMenu.vue.d.ts +52 -0
- package/src/components/style/VcsTextSelector.vue.d.ts +58 -0
- package/src/components/style/VcsVectorStyleComponent.vue.d.ts +76 -0
- package/src/components/style/composables.d.ts +43 -0
- package/src/components/style/composables.js +11 -8
- package/src/components/tables/VcsDataTable.vue +11 -3
- package/src/components/tables/VcsDataTable.vue.d.ts +142 -0
- package/src/components/tables/VcsTable.vue +71 -2
- package/src/components/tables/VcsTable.vue.d.ts +88 -0
- package/src/components/vector-properties/VcsFeatureEditingWindow.vue +392 -0
- package/src/components/vector-properties/VcsFeatureEditingWindow.vue.d.ts +87 -0
- package/src/components/vector-properties/VcsFeatureTransforms.vue +217 -0
- package/src/components/vector-properties/VcsFeatureTransforms.vue.d.ts +45 -0
- package/src/components/vector-properties/VcsVectorPropertiesComponent.vue +96 -52
- package/src/components/vector-properties/VcsVectorPropertiesComponent.vue.d.ts +119 -0
- package/src/components/vector-properties/composables.d.ts +33 -0
- package/src/components/vector-properties/composables.js +21 -14
- package/src/components/viewpoint/VcsViewpointComponent.vue +514 -0
- package/src/components/viewpoint/VcsViewpointComponent.vue.d.ts +126 -0
- package/src/components/viewpoint/VcsViewpointEditor.vue +87 -0
- package/src/components/viewpoint/VcsViewpointEditor.vue.d.ts +25 -0
- package/src/contentTree/LayerTree.vue.d.ts +15 -0
- package/src/contentTree/contentTreeCollection.d.ts +113 -0
- package/src/contentTree/contentTreeCollection.js +10 -20
- package/src/contentTree/contentTreeItem.d.ts +334 -0
- package/src/contentTree/contentTreeItem.js +31 -17
- package/src/contentTree/flightContentTreeItem.d.ts +53 -0
- package/src/contentTree/flightContentTreeItem.js +201 -0
- package/src/contentTree/groupContentTreeItem.d.ts +14 -0
- package/src/contentTree/groupContentTreeItem.js +2 -2
- package/src/contentTree/layerContentTreeItem.d.ts +76 -0
- package/src/contentTree/layerContentTreeItem.js +7 -9
- package/src/contentTree/layerGroupContentTreeItem.d.ts +50 -0
- package/src/contentTree/layerGroupContentTreeItem.js +2 -3
- package/src/contentTree/nodeContentTreeItem.d.ts +10 -0
- package/src/contentTree/nodeContentTreeItem.js +2 -2
- package/src/contentTree/obliqueCollectionContentTreeItem.d.ts +46 -0
- package/src/contentTree/obliqueCollectionContentTreeItem.js +3 -5
- package/src/contentTree/subContentTreeItem.d.ts +15 -0
- package/src/contentTree/subContentTreeItem.js +3 -3
- package/src/contentTree/vcsObjectContentTreeItem.d.ts +56 -0
- package/src/contentTree/vcsObjectContentTreeItem.js +3 -4
- package/src/contentTree/viewpointContentTreeItem.d.ts +46 -0
- package/src/contentTree/viewpointContentTreeItem.js +3 -4
- package/src/downloadHelper.d.ts +27 -0
- package/src/featureInfo/AddressBalloonComponent.vue.d.ts +2 -0
- package/src/featureInfo/BalloonComponent.vue +16 -3
- package/src/featureInfo/BalloonComponent.vue.d.ts +61 -0
- package/src/featureInfo/abstractFeatureInfoView.d.ts +199 -0
- package/src/featureInfo/abstractFeatureInfoView.js +82 -18
- package/src/featureInfo/addressBalloonFeatureInfoView.d.ts +67 -0
- package/src/featureInfo/addressBalloonFeatureInfoView.js +9 -2
- package/src/featureInfo/balloonFeatureInfoView.d.ts +49 -0
- package/src/featureInfo/balloonFeatureInfoView.js +12 -11
- package/src/featureInfo/balloonHelper.d.ts +31 -0
- package/src/featureInfo/balloonHelper.js +6 -6
- package/src/featureInfo/featureInfo.d.ts +146 -0
- package/src/featureInfo/featureInfo.js +11 -16
- package/src/featureInfo/featureInfoInteraction.d.ts +21 -0
- package/src/featureInfo/featureInfoInteraction.js +2 -2
- package/src/featureInfo/iframeFeatureInfoView.d.ts +48 -0
- package/src/featureInfo/iframeFeatureInfoView.js +3 -5
- package/src/featureInfo/tableFeatureInfoView.d.ts +75 -0
- package/src/featureInfo/tableFeatureInfoView.js +19 -9
- package/src/i18n/de.d.ts +353 -0
- package/src/i18n/de.js +114 -2
- package/src/i18n/en.d.ts +352 -0
- package/src/i18n/en.js +113 -1
- package/src/i18n/i18nCollection.d.ts +82 -0
- package/src/i18n/i18nCollection.js +3 -3
- package/src/init.d.ts +58 -0
- package/src/init.js +3 -5
- package/src/legend/StyleLegendItem.vue.d.ts +25 -0
- package/src/legend/VcsLegend.vue.d.ts +20 -0
- package/src/legend/legendHelper.d.ts +172 -0
- package/src/legend/legendHelper.js +21 -21
- package/src/manager/buttonManager.d.ts +106 -0
- package/src/manager/buttonManager.js +8 -4
- package/src/manager/collectionManager/CollectionComponent.vue +38 -42
- package/src/manager/collectionManager/CollectionComponent.vue.d.ts +17 -0
- package/src/manager/collectionManager/CollectionComponentList.vue +53 -18
- package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +38 -0
- package/src/manager/collectionManager/CollectionComponentProvider.vue +3 -2
- package/src/manager/collectionManager/CollectionComponentProvider.vue.d.ts +12 -0
- package/src/manager/collectionManager/CollectionManager.vue +29 -4
- package/src/manager/collectionManager/CollectionManager.vue.d.ts +8 -0
- package/src/manager/collectionManager/categoryManager.d.ts +56 -0
- package/src/manager/collectionManager/categoryManager.js +21 -7
- package/src/manager/collectionManager/collectionComponentClass.d.ts +257 -0
- package/src/manager/collectionManager/{collectionComponent.js → collectionComponentClass.js} +210 -57
- package/src/manager/collectionManager/collectionManager.d.ts +200 -0
- package/src/manager/collectionManager/collectionManager.js +45 -39
- package/src/manager/collectionManager/editorCollectionComponentClass.d.ts +60 -0
- package/src/manager/collectionManager/editorCollectionComponentClass.js +295 -0
- package/src/manager/contextMenu/ContextMenuComponent.vue.d.ts +18 -0
- package/src/manager/contextMenu/contextMenuInteraction.d.ts +24 -0
- package/src/manager/contextMenu/contextMenuManager.d.ts +70 -0
- package/src/manager/contextMenu/contextMenuManager.js +5 -5
- package/src/manager/navbarManager.d.ts +60 -0
- package/src/manager/navbarManager.js +10 -6
- package/src/manager/toolbox/GroupToolboxComponent.vue.d.ts +17 -0
- package/src/manager/toolbox/SelectToolboxComponent.vue +1 -0
- package/src/manager/toolbox/SelectToolboxComponent.vue.d.ts +15 -0
- package/src/manager/toolbox/ToolboxManager.vue +33 -7
- package/src/manager/toolbox/ToolboxManager.vue.d.ts +21 -0
- package/src/manager/toolbox/toolboxManager.d.ts +177 -0
- package/src/manager/toolbox/toolboxManager.js +86 -31
- package/src/manager/window/WindowComponent.vue.d.ts +40 -0
- package/src/manager/window/WindowComponentHeader.vue +1 -1
- package/src/manager/window/WindowComponentHeader.vue.d.ts +36 -0
- package/src/manager/window/WindowManager.vue +1 -0
- package/src/manager/window/WindowManager.vue.d.ts +19 -0
- package/src/manager/window/windowHelper.d.ts +134 -0
- package/src/manager/window/windowHelper.js +20 -20
- package/src/manager/window/windowManager.d.ts +422 -0
- package/src/manager/window/windowManager.js +95 -40
- package/src/navigation/MapNavCompass.vue.d.ts +25 -0
- package/src/navigation/MapNavigation.vue +2 -2
- package/src/navigation/MapNavigation.vue.d.ts +46 -0
- package/src/navigation/ObliqueRotation.vue +8 -4
- package/src/navigation/ObliqueRotation.vue.d.ts +14 -0
- package/src/navigation/OrientationToolsButton.vue.d.ts +30 -0
- package/src/navigation/TiltSlider.vue.d.ts +19 -0
- package/src/navigation/VcsCompass.vue.d.ts +25 -0
- package/src/navigation/VcsZoomButton.vue +6 -3
- package/src/navigation/VcsZoomButton.vue.d.ts +2 -0
- package/src/navigation/overviewMap.d.ts +199 -0
- package/src/navigation/overviewMap.js +3 -7
- package/src/navigation/overviewMapClickedInteraction.d.ts +21 -0
- package/src/notifier/NotifierComponent.vue.d.ts +10 -0
- package/src/notifier/notifier.d.ts +53 -0
- package/src/notifier/notifier.js +0 -1
- package/src/pluginHelper.d.ts +67 -0
- package/src/pluginHelper.js +11 -9
- package/src/search/ResultItem.vue.d.ts +25 -0
- package/src/search/ResultsComponent.vue +1 -1
- package/src/search/ResultsComponent.vue.d.ts +24 -0
- package/src/search/SearchComponent.vue +1 -1
- package/src/search/SearchComponent.vue.d.ts +10 -0
- package/src/search/search.d.ts +129 -0
- package/src/search/search.js +8 -11
- package/src/setup.d.ts +1 -0
- package/src/state.d.ts +57 -0
- package/src/state.js +7 -5
- package/src/uiConfig.d.ts +99 -0
- package/src/uiConfig.js +17 -7
- package/src/vcsUiApp.d.ts +301 -0
- package/src/vcsUiApp.js +58 -54
- package/src/vuePlugins/i18n.d.ts +10 -0
- package/src/vuePlugins/i18n.js +3 -3
- package/src/vuePlugins/vuetify.d.ts +27 -0
- package/tsconfig.json +36 -0
- package/dist/assets/index-661636d9.js +0 -1
- package/plugins/@vcmap-show-case/window-tester/src/toolboxData.js +0 -288
package/src/i18n/de.d.ts
ADDED
@@ -0,0 +1,353 @@
|
|
1
|
+
export default messages;
|
2
|
+
declare namespace messages {
|
3
|
+
export namespace navbar {
|
4
|
+
namespace maps {
|
5
|
+
let CesiumMap: string;
|
6
|
+
let OpenlayersMap: string;
|
7
|
+
let ObliqueMap: string;
|
8
|
+
}
|
9
|
+
namespace menu {
|
10
|
+
let tooltip: string;
|
11
|
+
}
|
12
|
+
namespace share {
|
13
|
+
let tooltip_1: string;
|
14
|
+
export { tooltip_1 as tooltip };
|
15
|
+
}
|
16
|
+
}
|
17
|
+
export namespace content {
|
18
|
+
let title: string;
|
19
|
+
let empty: string;
|
20
|
+
namespace search {
|
21
|
+
let placeholder: string;
|
22
|
+
}
|
23
|
+
namespace infoAction {
|
24
|
+
let title_1: string;
|
25
|
+
export { title_1 as title };
|
26
|
+
}
|
27
|
+
namespace viewpointAction {
|
28
|
+
let title_2: string;
|
29
|
+
export { title_2 as title };
|
30
|
+
}
|
31
|
+
namespace styleAction {
|
32
|
+
let title_3: string;
|
33
|
+
export { title_3 as title };
|
34
|
+
}
|
35
|
+
namespace layerExtentAction {
|
36
|
+
export let name: string;
|
37
|
+
let title_4: string;
|
38
|
+
export { title_4 as title };
|
39
|
+
}
|
40
|
+
}
|
41
|
+
export namespace navigation {
|
42
|
+
let obliqueLeftTooltip: string;
|
43
|
+
let obliqueRightTooltip: string;
|
44
|
+
let zoomInTooltip: string;
|
45
|
+
let zoomOutTooltip: string;
|
46
|
+
let pitchTooltip: string;
|
47
|
+
let overviewMapTooltip: string;
|
48
|
+
let homeButton: string;
|
49
|
+
}
|
50
|
+
export namespace categoryManager {
|
51
|
+
let title_5: string;
|
52
|
+
export { title_5 as title };
|
53
|
+
let tooltip_2: string;
|
54
|
+
export { tooltip_2 as tooltip };
|
55
|
+
}
|
56
|
+
export namespace collectionManager {
|
57
|
+
export let more: string;
|
58
|
+
export let less: string;
|
59
|
+
let empty_1: string;
|
60
|
+
export { empty_1 as empty };
|
61
|
+
}
|
62
|
+
export namespace components {
|
63
|
+
export let pin: string;
|
64
|
+
export let close: string;
|
65
|
+
export let add: string;
|
66
|
+
export let apply: string;
|
67
|
+
export let cancel: string;
|
68
|
+
export namespace _import {
|
69
|
+
let submit: string;
|
70
|
+
let fileDrop: string;
|
71
|
+
}
|
72
|
+
export { _import as import };
|
73
|
+
export namespace vcsFormSection {
|
74
|
+
let help: string;
|
75
|
+
}
|
76
|
+
export namespace vcsTable {
|
77
|
+
let key: string;
|
78
|
+
let value: string;
|
79
|
+
}
|
80
|
+
export namespace vcsDataTable {
|
81
|
+
let searchbarPlaceholder: string;
|
82
|
+
let itemsPerPage: string;
|
83
|
+
let ofItems: string;
|
84
|
+
let nextPage: string;
|
85
|
+
let formerPage: string;
|
86
|
+
let noDataPlaceholder: string;
|
87
|
+
let noResultsPlaceholder: string;
|
88
|
+
}
|
89
|
+
export namespace style {
|
90
|
+
let fill: string;
|
91
|
+
let stroke: string;
|
92
|
+
let reset: string;
|
93
|
+
let lineWidth: string;
|
94
|
+
let type: string;
|
95
|
+
let points: string;
|
96
|
+
let radius: string;
|
97
|
+
let radius2: string;
|
98
|
+
let angle: string;
|
99
|
+
let rotation: string;
|
100
|
+
let scale: string;
|
101
|
+
let opacity: string;
|
102
|
+
let image: string;
|
103
|
+
let icon: string;
|
104
|
+
let shape: string;
|
105
|
+
let presets: string;
|
106
|
+
let circle: string;
|
107
|
+
let square: string;
|
108
|
+
let rectangle: string;
|
109
|
+
let triangle: string;
|
110
|
+
let star: string;
|
111
|
+
let cross: string;
|
112
|
+
let x: string;
|
113
|
+
let custom: string;
|
114
|
+
let bold: string;
|
115
|
+
let italic: string;
|
116
|
+
let text: string;
|
117
|
+
let enterText: string;
|
118
|
+
let offset: string;
|
119
|
+
}
|
120
|
+
export namespace flight {
|
121
|
+
export let general: string;
|
122
|
+
let name_1: string;
|
123
|
+
export { name_1 as name };
|
124
|
+
let title_6: string;
|
125
|
+
export { title_6 as title };
|
126
|
+
export let titlePlaceholder: string;
|
127
|
+
export let interpolation: string;
|
128
|
+
export let duration: string;
|
129
|
+
export let spline: string;
|
130
|
+
export let linear: string;
|
131
|
+
export let loop: string;
|
132
|
+
export let anchors: string;
|
133
|
+
export let hidePath: string;
|
134
|
+
export let addAnchor: string;
|
135
|
+
export let removeAnchor: string;
|
136
|
+
export let editAnchor: string;
|
137
|
+
export let zoomToAnchor: string;
|
138
|
+
export let noAnchor: string;
|
139
|
+
export let invalidDuration: string;
|
140
|
+
}
|
141
|
+
export namespace viewpoint {
|
142
|
+
let name_2: string;
|
143
|
+
export { name_2 as name };
|
144
|
+
let title_7: string;
|
145
|
+
export { title_7 as title };
|
146
|
+
let titlePlaceholder_1: string;
|
147
|
+
export { titlePlaceholder_1 as titlePlaceholder };
|
148
|
+
export let groundPosition: string;
|
149
|
+
export let cameraPosition: string;
|
150
|
+
export let distance: string;
|
151
|
+
export let heading: string;
|
152
|
+
export let pitch: string;
|
153
|
+
export let roll: string;
|
154
|
+
export let animate: string;
|
155
|
+
let duration_1: string;
|
156
|
+
export { duration_1 as duration };
|
157
|
+
let general_1: string;
|
158
|
+
export { general_1 as general };
|
159
|
+
export let positionAndOrientation: string;
|
160
|
+
export let updateFromView: string;
|
161
|
+
export let sync: string;
|
162
|
+
export let syncOff: string;
|
163
|
+
export let finiteNumber: string;
|
164
|
+
export let positiveNumber: string;
|
165
|
+
}
|
166
|
+
export namespace coordinate {
|
167
|
+
let outOfRange: string;
|
168
|
+
}
|
169
|
+
export namespace extent {
|
170
|
+
let title_8: string;
|
171
|
+
export { title_8 as title };
|
172
|
+
export let projection: string;
|
173
|
+
export let min: string;
|
174
|
+
export let max: string;
|
175
|
+
export let show: string;
|
176
|
+
export let hide: string;
|
177
|
+
export let create: string;
|
178
|
+
export let zoom: string;
|
179
|
+
export let invalid: string;
|
180
|
+
export let editVertices: string;
|
181
|
+
export let translate: string;
|
182
|
+
}
|
183
|
+
export namespace editor {
|
184
|
+
let translate_1: string;
|
185
|
+
export { translate_1 as translate };
|
186
|
+
export let rotate: string;
|
187
|
+
let scale_1: string;
|
188
|
+
export { scale_1 as scale };
|
189
|
+
export let extrude: string;
|
190
|
+
export let header: string;
|
191
|
+
export let placeOnTerrain: string;
|
192
|
+
export let cw: string;
|
193
|
+
export let ccw: string;
|
194
|
+
let angle_1: string;
|
195
|
+
export { angle_1 as angle };
|
196
|
+
export let edit: string;
|
197
|
+
export let modifyHeader: string;
|
198
|
+
export let modifyInfo: string;
|
199
|
+
export let styleHeader: string;
|
200
|
+
}
|
201
|
+
export namespace vectorProperties {
|
202
|
+
let header_1: string;
|
203
|
+
export { header_1 as header };
|
204
|
+
export let altitudeMode: string;
|
205
|
+
export let clampToGround: string;
|
206
|
+
export let absolute: string;
|
207
|
+
export let relativeToGround: string;
|
208
|
+
export let groundLevel: string;
|
209
|
+
export let classificationType: string;
|
210
|
+
export let none: string;
|
211
|
+
export let both: string;
|
212
|
+
export let cesium3DTile: string;
|
213
|
+
export let terrain: string;
|
214
|
+
export let heightAboveGround: string;
|
215
|
+
export let allowPicking: string;
|
216
|
+
export let scaleByDistance: string;
|
217
|
+
export let eyeOffset: string;
|
218
|
+
export let storeys: string;
|
219
|
+
export let storeyHeights: string;
|
220
|
+
export let aboveGround: string;
|
221
|
+
export let belowGround: string;
|
222
|
+
export let modelUrl: string;
|
223
|
+
export let modelHeading: string;
|
224
|
+
export let modelPitch: string;
|
225
|
+
export let modelRoll: string;
|
226
|
+
export let baseUrl: string;
|
227
|
+
export let extrudedHeight: string;
|
228
|
+
export let skirt: string;
|
229
|
+
export let modelScale: string;
|
230
|
+
}
|
231
|
+
export namespace validation {
|
232
|
+
let allowedRange: string;
|
233
|
+
let notValid: string;
|
234
|
+
let required: string;
|
235
|
+
}
|
236
|
+
}
|
237
|
+
export namespace settings {
|
238
|
+
let title_9: string;
|
239
|
+
export { title_9 as title };
|
240
|
+
let tooltip_3: string;
|
241
|
+
export { tooltip_3 as tooltip };
|
242
|
+
export let languageSelector: string;
|
243
|
+
export namespace theme {
|
244
|
+
let title_10: string;
|
245
|
+
export { title_10 as title };
|
246
|
+
export let dark: string;
|
247
|
+
export let light: string;
|
248
|
+
}
|
249
|
+
}
|
250
|
+
export namespace help_1 {
|
251
|
+
let title_11: string;
|
252
|
+
export { title_11 as title };
|
253
|
+
let tooltip_4: string;
|
254
|
+
export { tooltip_4 as tooltip };
|
255
|
+
}
|
256
|
+
export { help_1 as help };
|
257
|
+
export namespace featureInfo {
|
258
|
+
let activateToolTitle: string;
|
259
|
+
let deactivateToolTitle: string;
|
260
|
+
}
|
261
|
+
export namespace legend {
|
262
|
+
let title_12: string;
|
263
|
+
export { title_12 as title };
|
264
|
+
let tooltip_5: string;
|
265
|
+
export { tooltip_5 as tooltip };
|
266
|
+
let empty_2: string;
|
267
|
+
export { empty_2 as empty };
|
268
|
+
export let openInNew: string;
|
269
|
+
export let defaultLabelText: string;
|
270
|
+
}
|
271
|
+
export namespace search_1 {
|
272
|
+
let title_13: string;
|
273
|
+
export { title_13 as title };
|
274
|
+
let tooltip_6: string;
|
275
|
+
export { tooltip_6 as tooltip };
|
276
|
+
export let select: string;
|
277
|
+
let placeholder_1: string;
|
278
|
+
export { placeholder_1 as placeholder };
|
279
|
+
export let zoomToFeatureAction: string;
|
280
|
+
export let zoomToAll: string;
|
281
|
+
}
|
282
|
+
export { search_1 as search };
|
283
|
+
export namespace toolbox {
|
284
|
+
let flight_1: string;
|
285
|
+
export { flight_1 as flight };
|
286
|
+
export let miscellaneous: string;
|
287
|
+
}
|
288
|
+
export namespace footer {
|
289
|
+
let title_14: string;
|
290
|
+
export { title_14 as title };
|
291
|
+
export namespace attributions {
|
292
|
+
let title_15: string;
|
293
|
+
export { title_15 as title };
|
294
|
+
let tooltip_7: string;
|
295
|
+
export { tooltip_7 as tooltip };
|
296
|
+
let empty_3: string;
|
297
|
+
export { empty_3 as empty };
|
298
|
+
}
|
299
|
+
export namespace imprint {
|
300
|
+
let title_16: string;
|
301
|
+
export { title_16 as title };
|
302
|
+
let tooltip_8: string;
|
303
|
+
export { tooltip_8 as tooltip };
|
304
|
+
}
|
305
|
+
export namespace dataprotection {
|
306
|
+
let title_17: string;
|
307
|
+
export { title_17 as title };
|
308
|
+
let tooltip_9: string;
|
309
|
+
export { tooltip_9 as tooltip };
|
310
|
+
}
|
311
|
+
export namespace positionDisplay {
|
312
|
+
let title_18: string;
|
313
|
+
export { title_18 as title };
|
314
|
+
let projection_1: string;
|
315
|
+
export { projection_1 as projection };
|
316
|
+
}
|
317
|
+
}
|
318
|
+
export namespace notification {
|
319
|
+
let error: string;
|
320
|
+
let warning: string;
|
321
|
+
let information: string;
|
322
|
+
let success: string;
|
323
|
+
}
|
324
|
+
export namespace datePicker {
|
325
|
+
let today: string;
|
326
|
+
}
|
327
|
+
export namespace list {
|
328
|
+
export let selectAll: string;
|
329
|
+
export let clearSelection: string;
|
330
|
+
export let renameItem: string;
|
331
|
+
export let deleteItem: string;
|
332
|
+
export let editItem: string;
|
333
|
+
let _import_1: string;
|
334
|
+
export { _import_1 as import };
|
335
|
+
let _export: string;
|
336
|
+
export { _export as export };
|
337
|
+
let _delete: string;
|
338
|
+
export { _delete as delete };
|
339
|
+
let edit_1: string;
|
340
|
+
export { edit_1 as edit };
|
341
|
+
}
|
342
|
+
export namespace flight_2 {
|
343
|
+
let player: string;
|
344
|
+
let playTooltip: string;
|
345
|
+
let pauseTooltip: string;
|
346
|
+
let stopTooltip: string;
|
347
|
+
let forwardFastTooltip: string;
|
348
|
+
let backwardFastTooltip: string;
|
349
|
+
let forwardStepTooltip: string;
|
350
|
+
let backwardStepTooltip: string;
|
351
|
+
}
|
352
|
+
export { flight_2 as flight };
|
353
|
+
}
|
package/src/i18n/de.js
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
import { TransformationMode } from '@vcmap/core';
|
2
|
+
|
1
3
|
const messages = {
|
2
4
|
navbar: {
|
3
5
|
maps: {
|
@@ -46,14 +48,20 @@ const messages = {
|
|
46
48
|
tooltip: 'Mein Arbeitsbereich',
|
47
49
|
},
|
48
50
|
collectionManager: {
|
49
|
-
more: '
|
51
|
+
more: 'Alle anzeigen...',
|
52
|
+
less: 'Weniger anzeigen...',
|
50
53
|
empty: 'Es gibt noch keine Einträge.',
|
51
54
|
},
|
52
55
|
components: {
|
53
56
|
pin: 'Fenster andocken',
|
54
57
|
close: 'Fenster schließen',
|
58
|
+
add: 'Hinzufügen',
|
55
59
|
apply: 'Anwenden',
|
56
60
|
cancel: 'Abbrechen',
|
61
|
+
import: {
|
62
|
+
submit: 'Importieren',
|
63
|
+
fileDrop: 'Dateien hierher ziehen',
|
64
|
+
},
|
57
65
|
vcsFormSection: {
|
58
66
|
help: 'Hilfe anzeigen',
|
59
67
|
},
|
@@ -85,8 +93,8 @@ const messages = {
|
|
85
93
|
opacity: 'Deckkraft',
|
86
94
|
image: 'Symbol',
|
87
95
|
icon: 'Icon',
|
88
|
-
presets: 'Vorlagen',
|
89
96
|
shape: 'Form',
|
97
|
+
presets: 'Vorlagen',
|
90
98
|
circle: 'Kreis',
|
91
99
|
square: 'Quadrat',
|
92
100
|
rectangle: 'Rechteck',
|
@@ -101,6 +109,77 @@ const messages = {
|
|
101
109
|
enterText: 'Text hier eingeben',
|
102
110
|
offset: 'Versatz',
|
103
111
|
},
|
112
|
+
flight: {
|
113
|
+
general: 'Flug Einstellungen',
|
114
|
+
name: 'Name (ID)',
|
115
|
+
title: 'Titel',
|
116
|
+
titlePlaceholder: 'Titel des Kameraflugs',
|
117
|
+
interpolation: 'Interpolation',
|
118
|
+
duration: 'Gesamtflugdauer',
|
119
|
+
spline: 'Spline',
|
120
|
+
linear: 'Linear',
|
121
|
+
loop: 'Schleife',
|
122
|
+
anchors: 'Stützpunkte',
|
123
|
+
hidePath: 'Flugpfadvisualisierung',
|
124
|
+
addAnchor: 'Aktuelle Ansicht als Stützpunkt hinzufügen',
|
125
|
+
removeAnchor: 'Stützpunkt entfernen',
|
126
|
+
editAnchor: 'Stützpunkt bearbeiten',
|
127
|
+
zoomToAnchor: 'Auf Stützpunkt zoomen',
|
128
|
+
noAnchor: 'Es sind noch keine Stützpunkte definiert.',
|
129
|
+
invalidDuration: 'Die Gesamtflugzeit muss größer als Null sein!',
|
130
|
+
},
|
131
|
+
viewpoint: {
|
132
|
+
name: 'Name (ID)',
|
133
|
+
title: 'Titel',
|
134
|
+
titlePlaceholder: 'Titel der Ansicht',
|
135
|
+
groundPosition: 'Bodenposition',
|
136
|
+
cameraPosition: 'Kameraposition',
|
137
|
+
distance: 'Distanz',
|
138
|
+
heading: 'Azimut',
|
139
|
+
pitch: 'Neigung',
|
140
|
+
roll: 'Querneigung',
|
141
|
+
animate: 'Animation',
|
142
|
+
duration: 'Animationsdauer',
|
143
|
+
general: 'Allgemeine Einstellungen',
|
144
|
+
positionAndOrientation: 'Position & Orientierung',
|
145
|
+
updateFromView: 'Aktuelle Kartenposition übernehmen',
|
146
|
+
sync: 'Synchronisieren der Kamera einschalten',
|
147
|
+
syncOff: 'Synchronisation zum Editieren ausschalten',
|
148
|
+
finiteNumber: 'Nur finite Zahlen sind zulässig!',
|
149
|
+
positiveNumber: 'Nur positive Zahlen sind zulässig!',
|
150
|
+
},
|
151
|
+
coordinate: {
|
152
|
+
outOfRange: 'Wert außerhalb des zulässigen Bereichs!',
|
153
|
+
},
|
154
|
+
extent: {
|
155
|
+
title: 'Ausdehnung',
|
156
|
+
projection: 'Projektion',
|
157
|
+
min: 'Min',
|
158
|
+
max: 'Max',
|
159
|
+
show: 'Ausdehnung in Karte anzeigen',
|
160
|
+
hide: 'Ausdehnung in Karte ausblenden',
|
161
|
+
create: 'Neue Ausdehnung in Karte zeichnen',
|
162
|
+
zoom: 'Auf Ausdehnung zoomen',
|
163
|
+
invalid: 'Koordinaten ergeben keine valide Ausdehnung!',
|
164
|
+
editVertices: 'Ecken bearbeiten',
|
165
|
+
translate: 'Ausdehnung verschieben',
|
166
|
+
},
|
167
|
+
editor: {
|
168
|
+
[TransformationMode.TRANSLATE]: 'Objekt verschieben',
|
169
|
+
[TransformationMode.ROTATE]: 'Objekt rotieren',
|
170
|
+
[TransformationMode.SCALE]: 'Objekt skalieren',
|
171
|
+
[TransformationMode.EXTRUDE]: 'Objekt extrudieren',
|
172
|
+
header: 'Transformieren',
|
173
|
+
placeOnTerrain: 'Auf Gelände plazieren',
|
174
|
+
cw: '90° rechtsherum drehen',
|
175
|
+
ccw: '90° linksherum drehen',
|
176
|
+
angle: 'Winkel',
|
177
|
+
edit: 'Geometrie editieren',
|
178
|
+
modifyHeader: 'Editieren',
|
179
|
+
modifyInfo:
|
180
|
+
'Klicke die Symbole in der Überschrift um die selektierten Geometrien zu editieren.',
|
181
|
+
styleHeader: 'Stil',
|
182
|
+
},
|
104
183
|
vectorProperties: {
|
105
184
|
header: 'Vektor Eigenschaften',
|
106
185
|
altitudeMode: 'Höhenmodus',
|
@@ -180,6 +259,18 @@ const messages = {
|
|
180
259
|
tooltip: 'Öffne Attributionsfenster',
|
181
260
|
empty: 'Aktuell sind keine Attributionseinträge verfügbar.',
|
182
261
|
},
|
262
|
+
imprint: {
|
263
|
+
title: 'Impressum',
|
264
|
+
tooltip: 'Öffne Impressumsfenster',
|
265
|
+
},
|
266
|
+
dataprotection: {
|
267
|
+
title: 'Datenschutz',
|
268
|
+
tooltip: 'Öffne Datenschutzfenster',
|
269
|
+
},
|
270
|
+
positionDisplay: {
|
271
|
+
title: 'Positionsanzeige',
|
272
|
+
projection: 'Projektionsauswahl',
|
273
|
+
},
|
183
274
|
},
|
184
275
|
notification: {
|
185
276
|
error: 'Fehler',
|
@@ -190,6 +281,27 @@ const messages = {
|
|
190
281
|
datePicker: {
|
191
282
|
today: 'Heute',
|
192
283
|
},
|
284
|
+
list: {
|
285
|
+
selectAll: 'Alle selektieren',
|
286
|
+
clearSelection: 'Selektion aufheben',
|
287
|
+
renameItem: 'Element umbenennen',
|
288
|
+
deleteItem: 'Element löschen',
|
289
|
+
editItem: 'Element editieren',
|
290
|
+
import: 'Importieren',
|
291
|
+
export: 'Selektion exportieren',
|
292
|
+
delete: 'Selektion löschen',
|
293
|
+
edit: 'Selektion editieren',
|
294
|
+
},
|
295
|
+
flight: {
|
296
|
+
player: 'Player',
|
297
|
+
playTooltip: 'Diesen Flug abspielen',
|
298
|
+
pauseTooltip: 'Diesen Flug an dieser Stelle pausieren',
|
299
|
+
stopTooltip: 'Diesen Flug stoppen',
|
300
|
+
forwardFastTooltip: 'Schnelles Vorspulen',
|
301
|
+
backwardFastTooltip: 'Schnelles Zurückspulen',
|
302
|
+
forwardStepTooltip: 'Schritt vorwärts zur nächsten Position',
|
303
|
+
backwardStepTooltip: 'Schritt rückwärts zur letzten Position',
|
304
|
+
},
|
193
305
|
};
|
194
306
|
|
195
307
|
export default messages;
|