@vcmap/ui 5.0.2 → 5.1.0-rc.1
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 +24 -0
- package/dist/assets/{cesium.a3a1dc.js → cesium.e9b3ca.js} +1859 -1828
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core.bb64ed.js → core.a9fe5a.js} +5859 -5041
- package/dist/assets/core.js +1 -1
- package/dist/assets/index-bb2549d6.js +1 -0
- package/dist/assets/{ol.833fa9.js → ol.5f0496.js} +7257 -7252
- package/dist/assets/ol.js +1 -1
- package/dist/assets/{ui.aeb2ec.css → ui.3c73c2.css} +2 -2
- package/dist/assets/{ui.aeb2ec.js → ui.3c73c2.js} +14199 -9198
- package/dist/assets/ui.js +1 -1
- package/dist/assets/{vue.8e1850.js → vue.4fe14e.js} +1243 -1234
- package/dist/assets/vue.js +2 -2
- package/dist/assets/{vuetify.3ed426.css → vuetify.260d9a.css} +1 -1
- package/dist/assets/{vuetify.3ed426.js → vuetify.260d9a.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 +3 -1
- 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/en.d.ts
ADDED
@@ -0,0 +1,352 @@
|
|
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
|
+
export let viewpointTitle: string;
|
145
|
+
let titlePlaceholder_1: string;
|
146
|
+
export { titlePlaceholder_1 as titlePlaceholder };
|
147
|
+
export let groundPosition: string;
|
148
|
+
export let cameraPosition: string;
|
149
|
+
export let distance: string;
|
150
|
+
export let heading: string;
|
151
|
+
export let pitch: string;
|
152
|
+
export let roll: string;
|
153
|
+
export let animate: string;
|
154
|
+
let duration_1: string;
|
155
|
+
export { duration_1 as duration };
|
156
|
+
let general_1: string;
|
157
|
+
export { general_1 as general };
|
158
|
+
export let positionAndOrientation: string;
|
159
|
+
export let updateFromView: string;
|
160
|
+
export let sync: string;
|
161
|
+
export let syncOff: string;
|
162
|
+
export let finiteNumber: string;
|
163
|
+
export let positiveNumber: string;
|
164
|
+
}
|
165
|
+
export namespace coordinate {
|
166
|
+
let outOfRange: string;
|
167
|
+
}
|
168
|
+
export namespace extent {
|
169
|
+
let title_7: string;
|
170
|
+
export { title_7 as title };
|
171
|
+
export let projection: string;
|
172
|
+
export let min: string;
|
173
|
+
export let max: string;
|
174
|
+
export let show: string;
|
175
|
+
export let hide: string;
|
176
|
+
export let create: string;
|
177
|
+
export let zoom: string;
|
178
|
+
export let invalid: string;
|
179
|
+
export let editVertices: string;
|
180
|
+
export let translate: string;
|
181
|
+
}
|
182
|
+
export namespace editor {
|
183
|
+
let translate_1: string;
|
184
|
+
export { translate_1 as translate };
|
185
|
+
export let rotate: string;
|
186
|
+
let scale_1: string;
|
187
|
+
export { scale_1 as scale };
|
188
|
+
export let extrude: string;
|
189
|
+
export let header: string;
|
190
|
+
export let placeOnTerrain: string;
|
191
|
+
export let cw: string;
|
192
|
+
export let ccw: string;
|
193
|
+
let angle_1: string;
|
194
|
+
export { angle_1 as angle };
|
195
|
+
export let edit: string;
|
196
|
+
export let modifyHeader: string;
|
197
|
+
export let modifyInfo: string;
|
198
|
+
export let styleHeader: string;
|
199
|
+
}
|
200
|
+
export namespace vectorProperties {
|
201
|
+
let header_1: string;
|
202
|
+
export { header_1 as header };
|
203
|
+
export let altitudeMode: string;
|
204
|
+
export let clampToGround: string;
|
205
|
+
export let absolute: string;
|
206
|
+
export let relativeToGround: string;
|
207
|
+
export let groundLevel: string;
|
208
|
+
export let classificationType: string;
|
209
|
+
export let none: string;
|
210
|
+
export let both: string;
|
211
|
+
export let cesium3DTile: string;
|
212
|
+
export let terrain: string;
|
213
|
+
export let heightAboveGround: string;
|
214
|
+
export let allowPicking: string;
|
215
|
+
export let scaleByDistance: string;
|
216
|
+
export let eyeOffset: string;
|
217
|
+
export let storeys: string;
|
218
|
+
export let storeyHeights: string;
|
219
|
+
export let aboveGround: string;
|
220
|
+
export let belowGround: string;
|
221
|
+
export let modelUrl: string;
|
222
|
+
export let modelHeading: string;
|
223
|
+
export let modelPitch: string;
|
224
|
+
export let modelRoll: string;
|
225
|
+
export let baseUrl: string;
|
226
|
+
export let extrudedHeight: string;
|
227
|
+
export let skirt: string;
|
228
|
+
export let modelScale: string;
|
229
|
+
}
|
230
|
+
export namespace validation {
|
231
|
+
let allowedRange: string;
|
232
|
+
let notValid: string;
|
233
|
+
let required: string;
|
234
|
+
}
|
235
|
+
}
|
236
|
+
export namespace settings {
|
237
|
+
let title_8: string;
|
238
|
+
export { title_8 as title };
|
239
|
+
let tooltip_3: string;
|
240
|
+
export { tooltip_3 as tooltip };
|
241
|
+
export let languageSelector: string;
|
242
|
+
export namespace theme {
|
243
|
+
let title_9: string;
|
244
|
+
export { title_9 as title };
|
245
|
+
export let dark: string;
|
246
|
+
export let light: string;
|
247
|
+
}
|
248
|
+
}
|
249
|
+
export namespace help_1 {
|
250
|
+
let title_10: string;
|
251
|
+
export { title_10 as title };
|
252
|
+
let tooltip_4: string;
|
253
|
+
export { tooltip_4 as tooltip };
|
254
|
+
}
|
255
|
+
export { help_1 as help };
|
256
|
+
export namespace featureInfo {
|
257
|
+
let activateToolTitle: string;
|
258
|
+
let deactivateToolTitle: string;
|
259
|
+
}
|
260
|
+
export namespace legend {
|
261
|
+
let title_11: string;
|
262
|
+
export { title_11 as title };
|
263
|
+
let tooltip_5: string;
|
264
|
+
export { tooltip_5 as tooltip };
|
265
|
+
let empty_2: string;
|
266
|
+
export { empty_2 as empty };
|
267
|
+
export let openInNew: string;
|
268
|
+
export let defaultLabelText: string;
|
269
|
+
}
|
270
|
+
export namespace search_1 {
|
271
|
+
let title_12: string;
|
272
|
+
export { title_12 as title };
|
273
|
+
let tooltip_6: string;
|
274
|
+
export { tooltip_6 as tooltip };
|
275
|
+
export let select: string;
|
276
|
+
let placeholder_1: string;
|
277
|
+
export { placeholder_1 as placeholder };
|
278
|
+
export let zoomToFeatureAction: string;
|
279
|
+
export let zoomToAll: string;
|
280
|
+
}
|
281
|
+
export { search_1 as search };
|
282
|
+
export namespace toolbox {
|
283
|
+
let flight_1: string;
|
284
|
+
export { flight_1 as flight };
|
285
|
+
export let miscellaneous: string;
|
286
|
+
}
|
287
|
+
export namespace footer {
|
288
|
+
let title_13: string;
|
289
|
+
export { title_13 as title };
|
290
|
+
export namespace attributions {
|
291
|
+
let title_14: string;
|
292
|
+
export { title_14 as title };
|
293
|
+
let tooltip_7: string;
|
294
|
+
export { tooltip_7 as tooltip };
|
295
|
+
let empty_3: string;
|
296
|
+
export { empty_3 as empty };
|
297
|
+
}
|
298
|
+
export namespace imprint {
|
299
|
+
let title_15: string;
|
300
|
+
export { title_15 as title };
|
301
|
+
let tooltip_8: string;
|
302
|
+
export { tooltip_8 as tooltip };
|
303
|
+
}
|
304
|
+
export namespace dataprotection {
|
305
|
+
let title_16: string;
|
306
|
+
export { title_16 as title };
|
307
|
+
let tooltip_9: string;
|
308
|
+
export { tooltip_9 as tooltip };
|
309
|
+
}
|
310
|
+
export namespace positionDisplay {
|
311
|
+
let title_17: string;
|
312
|
+
export { title_17 as title };
|
313
|
+
let projection_1: string;
|
314
|
+
export { projection_1 as projection };
|
315
|
+
}
|
316
|
+
}
|
317
|
+
export namespace notification {
|
318
|
+
let error: string;
|
319
|
+
let warning: string;
|
320
|
+
let information: string;
|
321
|
+
let success: string;
|
322
|
+
}
|
323
|
+
export namespace datePicker {
|
324
|
+
let today: string;
|
325
|
+
}
|
326
|
+
export namespace list {
|
327
|
+
export let selectAll: string;
|
328
|
+
export let clearSelection: string;
|
329
|
+
export let renameItem: string;
|
330
|
+
export let deleteItem: string;
|
331
|
+
export let editItem: string;
|
332
|
+
let _import_1: string;
|
333
|
+
export { _import_1 as import };
|
334
|
+
let _export: string;
|
335
|
+
export { _export as export };
|
336
|
+
let _delete: string;
|
337
|
+
export { _delete as delete };
|
338
|
+
let edit_1: string;
|
339
|
+
export { edit_1 as edit };
|
340
|
+
}
|
341
|
+
export namespace flight_2 {
|
342
|
+
let player: string;
|
343
|
+
let playTooltip: string;
|
344
|
+
let pauseTooltip: string;
|
345
|
+
let stopTooltip: string;
|
346
|
+
let forwardFastTooltip: string;
|
347
|
+
let backwardFastTooltip: string;
|
348
|
+
let forwardStepTooltip: string;
|
349
|
+
let backwardStepTooltip: string;
|
350
|
+
}
|
351
|
+
export { flight_2 as flight };
|
352
|
+
}
|
package/src/i18n/en.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: 'My Workspace',
|
47
49
|
},
|
48
50
|
collectionManager: {
|
49
|
-
more: 'Show
|
51
|
+
more: 'Show all...',
|
52
|
+
less: 'Show less...',
|
50
53
|
empty: 'There are no entries yet.',
|
51
54
|
},
|
52
55
|
components: {
|
53
56
|
pin: 'Dock window',
|
54
57
|
close: 'Close window',
|
58
|
+
add: 'Add',
|
55
59
|
apply: 'Apply',
|
56
60
|
cancel: 'Cancel',
|
61
|
+
import: {
|
62
|
+
submit: 'Import',
|
63
|
+
fileDrop: 'Drop files here',
|
64
|
+
},
|
57
65
|
vcsFormSection: {
|
58
66
|
help: 'Show help',
|
59
67
|
},
|
@@ -101,6 +109,77 @@ const messages = {
|
|
101
109
|
enterText: 'Enter text here',
|
102
110
|
offset: 'Offset',
|
103
111
|
},
|
112
|
+
flight: {
|
113
|
+
general: 'Flight settings',
|
114
|
+
name: 'Name (ID)',
|
115
|
+
title: 'Title',
|
116
|
+
titlePlaceholder: 'Title of flight',
|
117
|
+
interpolation: 'Interpolation',
|
118
|
+
duration: 'Total flight duration',
|
119
|
+
spline: 'Spline',
|
120
|
+
linear: 'Linear',
|
121
|
+
loop: 'Loop',
|
122
|
+
anchors: 'Flight anchors',
|
123
|
+
hidePath: 'Visualization of flight path',
|
124
|
+
addAnchor: 'Add current view as new anchor',
|
125
|
+
removeAnchor: 'Remove anchor',
|
126
|
+
editAnchor: 'Edit anchor',
|
127
|
+
zoomToAnchor: 'Zoom to anchor',
|
128
|
+
noAnchor: 'No flight anchor available yet.',
|
129
|
+
invalidDuration: 'The total flight duration must be greater zero!',
|
130
|
+
},
|
131
|
+
viewpoint: {
|
132
|
+
name: 'Name (ID)',
|
133
|
+
viewpointTitle: 'Title',
|
134
|
+
titlePlaceholder: 'Title of viewpoint',
|
135
|
+
groundPosition: 'Ground position',
|
136
|
+
cameraPosition: 'Camera position',
|
137
|
+
distance: 'Distance',
|
138
|
+
heading: 'Azimuth',
|
139
|
+
pitch: 'Pitch',
|
140
|
+
roll: 'Roll',
|
141
|
+
animate: 'Animate',
|
142
|
+
duration: 'Animation duration',
|
143
|
+
general: 'General settings',
|
144
|
+
positionAndOrientation: 'Position & Orientation',
|
145
|
+
updateFromView: 'Apply current map position',
|
146
|
+
sync: 'Turn on synchronization of the camera',
|
147
|
+
syncOff: 'Turn off synchronization for editing',
|
148
|
+
finiteNumber: 'Finite number is required!',
|
149
|
+
positiveNumber: 'Positive number is required!',
|
150
|
+
},
|
151
|
+
coordinate: {
|
152
|
+
outOfRange: 'Value out of valid range!',
|
153
|
+
},
|
154
|
+
extent: {
|
155
|
+
title: 'Extent',
|
156
|
+
projection: 'Projection',
|
157
|
+
min: 'Min',
|
158
|
+
max: 'Max',
|
159
|
+
show: 'Show extent in map',
|
160
|
+
hide: 'Hide extent in map',
|
161
|
+
create: 'Draw new extent in map',
|
162
|
+
zoom: 'Zoom to extent',
|
163
|
+
invalid: 'Coordinates do not result in a valid extent!',
|
164
|
+
editVertices: 'Edit extent corners',
|
165
|
+
translate: 'Translate extent',
|
166
|
+
},
|
167
|
+
editor: {
|
168
|
+
[TransformationMode.TRANSLATE]: 'Translate features',
|
169
|
+
[TransformationMode.ROTATE]: 'Rotate features',
|
170
|
+
[TransformationMode.SCALE]: 'Scale features',
|
171
|
+
[TransformationMode.EXTRUDE]: 'Extrude features',
|
172
|
+
header: 'Transform',
|
173
|
+
placeOnTerrain: 'Place on terrain',
|
174
|
+
cw: 'Rotate 90° clockwise',
|
175
|
+
ccw: 'Rotate 90° counter clockwise',
|
176
|
+
angle: 'Angle',
|
177
|
+
edit: 'Edit geometry',
|
178
|
+
modifyHeader: 'Modify',
|
179
|
+
modifyInfo:
|
180
|
+
'For modifying the selected feature(s), click on one of the icons in the header above.',
|
181
|
+
styleHeader: 'Style',
|
182
|
+
},
|
104
183
|
vectorProperties: {
|
105
184
|
header: 'Vector properties',
|
106
185
|
altitudeMode: 'Altitude mode',
|
@@ -180,6 +259,18 @@ const messages = {
|
|
180
259
|
tooltip: 'Open attributions window',
|
181
260
|
empty: 'Currently there are no attribution entries available.',
|
182
261
|
},
|
262
|
+
imprint: {
|
263
|
+
title: 'Imprint',
|
264
|
+
tooltip: 'Open imprint window',
|
265
|
+
},
|
266
|
+
dataprotection: {
|
267
|
+
title: 'Data Protection',
|
268
|
+
tooltip: 'Open data protection window',
|
269
|
+
},
|
270
|
+
positionDisplay: {
|
271
|
+
title: 'Position display',
|
272
|
+
projection: 'Select projection',
|
273
|
+
},
|
183
274
|
},
|
184
275
|
notification: {
|
185
276
|
error: 'Error',
|
@@ -190,6 +281,27 @@ const messages = {
|
|
190
281
|
datePicker: {
|
191
282
|
today: 'Today',
|
192
283
|
},
|
284
|
+
list: {
|
285
|
+
selectAll: 'Select all',
|
286
|
+
clearSelection: 'Clear selection',
|
287
|
+
renameItem: 'Rename item',
|
288
|
+
deleteItem: 'Remove item',
|
289
|
+
editItem: 'Edit item',
|
290
|
+
import: 'Import',
|
291
|
+
export: 'Export selection',
|
292
|
+
delete: 'Delete selection',
|
293
|
+
edit: 'Edit selection',
|
294
|
+
},
|
295
|
+
flight: {
|
296
|
+
player: 'Player',
|
297
|
+
playTooltip: 'Play this flight',
|
298
|
+
pauseTooltip: 'Pause this flight at the current position',
|
299
|
+
stopTooltip: 'Stop playing this flight',
|
300
|
+
forwardFastTooltip: 'Fast forward playing',
|
301
|
+
backwardFastTooltip: 'Fast backward playing',
|
302
|
+
forwardStepTooltip: 'Step forward to next position',
|
303
|
+
backwardStepTooltip: 'Step backward to previous position',
|
304
|
+
},
|
193
305
|
};
|
194
306
|
|
195
307
|
export default messages;
|
@@ -0,0 +1,82 @@
|
|
1
|
+
/**
|
2
|
+
* returns true if the given value is of type object and not an array.
|
3
|
+
* This function does not handle Maps and Sets and also returns true for these.
|
4
|
+
* This helper function is mainly used for the i18nCollection mergeDeep function
|
5
|
+
* @param {unknown} item
|
6
|
+
* @returns {boolean}
|
7
|
+
*/
|
8
|
+
export function isObject(item: unknown): boolean;
|
9
|
+
/**
|
10
|
+
* Deep merge objects into a new Object. Can only handle stringifyable content.
|
11
|
+
* This will create a new deep copy of the given sources. No copy by reference.
|
12
|
+
* @param {...Object} sources
|
13
|
+
* @returns {Object}
|
14
|
+
*/
|
15
|
+
export function mergeDeep(...sources: Object[]): Object;
|
16
|
+
/**
|
17
|
+
* Item for internationalization containing an object with key value mapping for each locale (de, en, nl, pl, ...).
|
18
|
+
* Other locales can be supported by adding corresponding mapping objects with associated locale key.
|
19
|
+
* @typedef {Object} I18nConfigurationItem
|
20
|
+
* @property {string} [name] - optional name for the item. If not provided checksum is used.
|
21
|
+
* @property {Object} [properties]
|
22
|
+
* @property {Object} [de]
|
23
|
+
* @property {Object} [en]
|
24
|
+
* ...
|
25
|
+
*/
|
26
|
+
/**
|
27
|
+
* A symbol added to plugin messages added to this collection.
|
28
|
+
* @type {symbol}
|
29
|
+
*/
|
30
|
+
export const i18nPluginSymbol: symbol;
|
31
|
+
export default I18nCollection;
|
32
|
+
/**
|
33
|
+
* Item for internationalization containing an object with key value mapping for each locale (de, en, nl, pl, ...).
|
34
|
+
* Other locales can be supported by adding corresponding mapping objects with associated locale key.
|
35
|
+
*/
|
36
|
+
export type I18nConfigurationItem = {
|
37
|
+
/**
|
38
|
+
* - optional name for the item. If not provided checksum is used.
|
39
|
+
*/
|
40
|
+
name?: string | undefined;
|
41
|
+
properties?: Object | undefined;
|
42
|
+
de?: Object | undefined;
|
43
|
+
/**
|
44
|
+
* ...
|
45
|
+
*/
|
46
|
+
en?: Object | undefined;
|
47
|
+
};
|
48
|
+
/**
|
49
|
+
* @extends {IndexedCollection<I18nConfigurationItem>}
|
50
|
+
*/
|
51
|
+
declare class I18nCollection extends IndexedCollection<I18nConfigurationItem> {
|
52
|
+
/**
|
53
|
+
* @param {import("@vcmap/core").OverrideCollection<import("@src/vcsUiApp.js").VcsPlugin<Object, Object>>} pluginCollection
|
54
|
+
*/
|
55
|
+
constructor(pluginCollection: import("@vcmap/core").OverrideCollection<import("@src/vcsUiApp.js").VcsPlugin<Object, Object>>);
|
56
|
+
/**
|
57
|
+
* VC Map default I18n Messages
|
58
|
+
* @type {Object}
|
59
|
+
* @private
|
60
|
+
*/
|
61
|
+
private _defaultMessages;
|
62
|
+
/**
|
63
|
+
* @type {import("@vcmap/core").OverrideCollection<import("@src/vcsUiApp.js").VcsPlugin>}
|
64
|
+
* @private
|
65
|
+
*/
|
66
|
+
private _pluginCollection;
|
67
|
+
_pluginI18nListeners: (() => void)[];
|
68
|
+
_i18nListener: (() => void)[];
|
69
|
+
/**
|
70
|
+
* Event raised, whenever a I18nConfigurationItem is added or removed or when a plugin with i18n keys is added or removed
|
71
|
+
* @type {VcsEvent<I18nConfigurationItem>}
|
72
|
+
*/
|
73
|
+
changed: VcsEvent<I18nConfigurationItem>;
|
74
|
+
/**
|
75
|
+
* Returns a merged Message Object with the locale as a key and an Object with all the translated keys.
|
76
|
+
* Includes all available plugin messages.
|
77
|
+
* @returns {Object}
|
78
|
+
*/
|
79
|
+
getMergedMessages(): Object;
|
80
|
+
}
|
81
|
+
import { IndexedCollection } from '@vcmap/core';
|
82
|
+
import { VcsEvent } from '@vcmap/core';
|
@@ -7,7 +7,7 @@ import de from './de.js';
|
|
7
7
|
* returns true if the given value is of type object and not an array.
|
8
8
|
* This function does not handle Maps and Sets and also returns true for these.
|
9
9
|
* This helper function is mainly used for the i18nCollection mergeDeep function
|
10
|
-
* @param {
|
10
|
+
* @param {unknown} item
|
11
11
|
* @returns {boolean}
|
12
12
|
*/
|
13
13
|
export function isObject(item) {
|
@@ -66,7 +66,7 @@ export function mergeDeep(...sources) {
|
|
66
66
|
*/
|
67
67
|
class I18nCollection extends IndexedCollection {
|
68
68
|
/**
|
69
|
-
* @param {import("@vcmap/core").OverrideCollection<VcsPlugin
|
69
|
+
* @param {import("@vcmap/core").OverrideCollection<import("@src/vcsUiApp.js").VcsPlugin<Object, Object>>} pluginCollection
|
70
70
|
*/
|
71
71
|
constructor(pluginCollection) {
|
72
72
|
super();
|
@@ -77,7 +77,7 @@ class I18nCollection extends IndexedCollection {
|
|
77
77
|
*/
|
78
78
|
this._defaultMessages = { name: 'default', en, de };
|
79
79
|
/**
|
80
|
-
* @type {import("@vcmap/core").OverrideCollection<VcsPlugin>}
|
80
|
+
* @type {import("@vcmap/core").OverrideCollection<import("@src/vcsUiApp.js").VcsPlugin>}
|
81
81
|
* @private
|
82
82
|
*/
|
83
83
|
this._pluginCollection = pluginCollection;
|
package/src/init.d.ts
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
/**
|
2
|
+
* creates and mounts a vcsApp
|
3
|
+
* @param {string} mountTarget
|
4
|
+
* @returns {Promise<import("@src/vcsUiApp.js").default>}
|
5
|
+
*/
|
6
|
+
export default function initApp(mountTarget: string): Promise<import("@src/vcsUiApp.js").default>;
|
7
|
+
/**
|
8
|
+
* Initializes app with an optional single config
|
9
|
+
* @param {string} mountTarget
|
10
|
+
* @param {string=} configUrl optional config
|
11
|
+
* @returns {Promise<import("@src/vcsUiApp.js").default>}
|
12
|
+
*/
|
13
|
+
export function initAppFromModule(mountTarget: string, configUrl?: string | undefined): Promise<import("@src/vcsUiApp.js").default>;
|
14
|
+
/**
|
15
|
+
* Initializes app with a map config containing a set of config urls
|
16
|
+
* @param {string} mountTarget
|
17
|
+
* @param {string} appUrl app config containing further modules to be loaded
|
18
|
+
* @returns {Promise<import("@src/vcsUiApp.js").default>}
|
19
|
+
*/
|
20
|
+
export function initAppFromAppConfig(mountTarget: string, appUrl: string): Promise<import("@src/vcsUiApp.js").default>;
|
21
|
+
export namespace VcsUiAppConfigPattern {
|
22
|
+
let id: (StringConstructor | undefined)[];
|
23
|
+
let layers: ({
|
24
|
+
type: StringConstructor;
|
25
|
+
name: StringConstructor;
|
26
|
+
}[] | undefined)[];
|
27
|
+
let maps: ({
|
28
|
+
type: StringConstructor;
|
29
|
+
name: StringConstructor;
|
30
|
+
}[] | undefined)[];
|
31
|
+
let styles: ({
|
32
|
+
type: StringConstructor;
|
33
|
+
name: StringConstructor;
|
34
|
+
}[] | undefined)[];
|
35
|
+
let viewpoints: ({
|
36
|
+
type: StringConstructor;
|
37
|
+
name: StringConstructor;
|
38
|
+
}[] | undefined)[];
|
39
|
+
let startingViewpointName: (StringConstructor | undefined)[];
|
40
|
+
let startingMapName: (StringConstructor | undefined)[];
|
41
|
+
let projection: (ObjectConstructor | undefined)[];
|
42
|
+
let categories: ({
|
43
|
+
name: StringConstructor;
|
44
|
+
items: ObjectConstructor[];
|
45
|
+
}[] | undefined)[];
|
46
|
+
let obliqueCollections: ({
|
47
|
+
type: StringConstructor;
|
48
|
+
name: StringConstructor;
|
49
|
+
}[] | undefined)[];
|
50
|
+
let plugins: (ObjectConstructor[] | undefined)[];
|
51
|
+
let contentTree: (ObjectConstructor[] | undefined)[];
|
52
|
+
let uiConfig: (ObjectConstructor[] | undefined)[];
|
53
|
+
let featureInfo: ({
|
54
|
+
type: StringConstructor;
|
55
|
+
name: StringConstructor;
|
56
|
+
}[] | undefined)[];
|
57
|
+
let i18n: (ObjectConstructor[] | undefined)[];
|
58
|
+
}
|