qwc2 2025.3.31
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/LICENSE +28 -0
- package/README.md +68 -0
- package/actions/display.js +7 -0
- package/actions/editing.js +7 -0
- package/actions/layerinfo.js +7 -0
- package/actions/layers.js +8 -0
- package/actions/localConfig.js +7 -0
- package/actions/locale.js +10 -0
- package/actions/locate.js +8 -0
- package/actions/logging.js +7 -0
- package/actions/map.js +15 -0
- package/actions/measurement.js +8 -0
- package/actions/processNotifications.js +7 -0
- package/actions/redlining.js +7 -0
- package/actions/redliningPick.js +7 -0
- package/actions/serviceinfo.js +7 -0
- package/actions/task.js +9 -0
- package/actions/theme.js +24 -0
- package/actions/windows.js +10 -0
- package/components/AppMenu.js +8 -0
- package/components/AttributeForm.js +34 -0
- package/components/AutoEditForm.js +8 -0
- package/components/CoordinateDisplayer.js +7 -0
- package/components/EditComboField.js +10 -0
- package/components/EditUploadField.js +8 -0
- package/components/FullscreenSwitcher.js +8 -0
- package/components/Icon.js +7 -0
- package/components/IdentifyViewer.js +16 -0
- package/components/ImportLayer.js +25 -0
- package/components/LayerInfoWindow.js +7 -0
- package/components/LinkFeatureForm.js +10 -0
- package/components/MapSelection.js +13 -0
- package/components/NumericInputWindow.js +7 -0
- package/components/PickFeature.js +7 -0
- package/components/PluginsContainer.js +8 -0
- package/components/PrintSelection.js +54 -0
- package/components/QtDesignerForm.js +30 -0
- package/components/ResizeableWindow.js +12 -0
- package/components/SearchBox.js +26 -0
- package/components/ServiceInfoWindow.js +7 -0
- package/components/SideBar.js +9 -0
- package/components/StandardApp.js +35 -0
- package/components/Swipeable.js +1 -0
- package/components/TaskBar.js +7 -0
- package/components/ThemeLayersListWindow.js +9 -0
- package/components/ThemeList.js +12 -0
- package/components/Toolbar.js +7 -0
- package/components/WindowManager.js +7 -0
- package/components/map/OlLayer.js +12 -0
- package/components/map/OlLocate.css +56 -0
- package/components/map/OlLocate.js +17 -0
- package/components/map/OlMap.js +11 -0
- package/components/map/layers/BingLayer.js +8 -0
- package/components/map/layers/GoogleLayer.js +27 -0
- package/components/map/layers/GraticuleLayer.js +8 -0
- package/components/map/layers/ImageLayer.js +8 -0
- package/components/map/layers/MVTLayer.js +7 -0
- package/components/map/layers/OSMLayer.js +8 -0
- package/components/map/layers/OverlayLayer.js +10 -0
- package/components/map/layers/VectorLayer.js +14 -0
- package/components/map/layers/WFSLayer.js +11 -0
- package/components/map/layers/WMSLayer.js +11 -0
- package/components/map/layers/WMTSLayer.js +9 -0
- package/components/map/layers/XYZLayer.js +7 -0
- package/components/map/layers/index.js +8 -0
- package/components/map3d/BottomBar3D.js +7 -0
- package/components/map3d/Compare3D.js +12 -0
- package/components/map3d/Draw3D.js +10 -0
- package/components/map3d/ExportObjects3D.js +17 -0
- package/components/map3d/HeightProfile3D.js +8 -0
- package/components/map3d/HideObjects3D.js +12 -0
- package/components/map3d/Identify3D.js +13 -0
- package/components/map3d/LayerTree3D.js +8 -0
- package/components/map3d/Map3D.js +29 -0
- package/components/map3d/Map3DLight.js +10 -0
- package/components/map3d/MapControls3D.js +20 -0
- package/components/map3d/MapExport3D.js +11 -0
- package/components/map3d/Measure3D.js +23 -0
- package/components/map3d/OverviewMap3D.js +9 -0
- package/components/map3d/SearchField3D.js +16 -0
- package/components/map3d/TopBar3D.js +7 -0
- package/components/map3d/View3DSwitcher.js +7 -0
- package/components/map3d/drawtool/CreateTool3D.js +9 -0
- package/components/map3d/drawtool/EditTool3D.js +9 -0
- package/components/map3d/drawtool/NumericInput3D.js +7 -0
- package/components/map3d/img/viewcone.svg +124 -0
- package/components/map3d/layers/VectorLayer3D.js +7 -0
- package/components/map3d/layers/WFSLayer3D.js +8 -0
- package/components/map3d/layers/WMSLayer3D.js +7 -0
- package/components/map3d/layers/WMTSLayer3D.js +9 -0
- package/components/map3d/layers/index.js +8 -0
- package/components/map3d/models/arrow.glb +0 -0
- package/components/map3d/models/pin.glb +0 -0
- package/components/map3d/slices/map3d.js +1 -0
- package/components/map3d/style/BottomBar3D.css +67 -0
- package/components/map3d/style/Compare3D.css +57 -0
- package/components/map3d/style/Draw3D.css +7 -0
- package/components/map3d/style/HideObjects3D.css +29 -0
- package/components/map3d/style/LayerTree3D.css +126 -0
- package/components/map3d/style/Map3D.css +42 -0
- package/components/map3d/style/Map3DLight.css +72 -0
- package/components/map3d/style/MapControls3D.css +56 -0
- package/components/map3d/style/MapExport3D.css +25 -0
- package/components/map3d/style/OverviewMap3D.css +37 -0
- package/components/map3d/style/SearchField3D.css +7 -0
- package/components/map3d/style/View3DSwitcher.css +27 -0
- package/components/map3d/utils/Tiles3DStyle.js +1 -0
- package/components/share/ShareLink.js +7 -0
- package/components/share/ShareQRCode.js +8 -0
- package/components/share/ShareSocials.js +9 -0
- package/components/share/style/ShareLink.css +13 -0
- package/components/share/style/ShareSocials.css +9 -0
- package/components/style/App.css +229 -0
- package/components/style/AppMenu.css +162 -0
- package/components/style/AttributeForm.css +57 -0
- package/components/style/AutoEditForm.css +64 -0
- package/components/style/DefaultColorScheme.css +60 -0
- package/components/style/EditUploadField.css +103 -0
- package/components/style/FullscreenSwitcher.css +25 -0
- package/components/style/Icon.css +26 -0
- package/components/style/IdentifyViewer.css +249 -0
- package/components/style/ImportLayer.css +28 -0
- package/components/style/LayerInfoWindow.css +46 -0
- package/components/style/LinkFeatureForm.css +48 -0
- package/components/style/NumericInputWindow.css +11 -0
- package/components/style/PickFeature.css +25 -0
- package/components/style/PluginsContainer.css +4 -0
- package/components/style/QtDesignerForm.css +225 -0
- package/components/style/ResizeableWindow.css +178 -0
- package/components/style/SearchBox.css +159 -0
- package/components/style/ServiceInfoWindow.css +34 -0
- package/components/style/SideBar.css +100 -0
- package/components/style/TaskBar.css +35 -0
- package/components/style/ThemeLayersListWindow.css +47 -0
- package/components/style/ThemeList.css +200 -0
- package/components/style/Toolbar.css +20 -0
- package/components/style/WindowManager.css +50 -0
- package/components/timeline/FixedTimeline.js +10 -0
- package/components/timeline/InfiniteTimeline.js +13 -0
- package/components/timeline/TimelineFeaturesSlider.js +10 -0
- package/components/timeline/style/FixedTimeline.css +76 -0
- package/components/timeline/style/InfiniteTimeline.css +94 -0
- package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
- package/components/widgets/AccordeonWidget.js +7 -0
- package/components/widgets/ButtonBar.js +7 -0
- package/components/widgets/ColorButton.js +8 -0
- package/components/widgets/ComboBox.js +7 -0
- package/components/widgets/CopyButton.js +7 -0
- package/components/widgets/DateTimeInput.js +8 -0
- package/components/widgets/EditableSelect.js +8 -0
- package/components/widgets/FileSelector.js +9 -0
- package/components/widgets/Input.js +7 -0
- package/components/widgets/InputContainer.js +7 -0
- package/components/widgets/LayerCatalogWidget.js +3 -0
- package/components/widgets/MenuButton.js +1 -0
- package/components/widgets/ModalDialog.js +7 -0
- package/components/widgets/NavBar.js +7 -0
- package/components/widgets/NumberInput.js +9 -0
- package/components/widgets/PopupMenu.js +1 -0
- package/components/widgets/Primitives.js +7 -0
- package/components/widgets/ReCaptchaWidget.js +1 -0
- package/components/widgets/SearchWidget.js +7 -0
- package/components/widgets/Spinner.js +6 -0
- package/components/widgets/SuggestionInput.js +7 -0
- package/components/widgets/TextInput.js +7 -0
- package/components/widgets/ToggleSwitch.js +7 -0
- package/components/widgets/VectorLayerPicker.js +8 -0
- package/components/widgets/style/AccordeonWidget.css +22 -0
- package/components/widgets/style/ButtonBar.css +88 -0
- package/components/widgets/style/ColorButton.css +88 -0
- package/components/widgets/style/ComboBox.css +83 -0
- package/components/widgets/style/CopyButton.css +21 -0
- package/components/widgets/style/EditableSelect.css +47 -0
- package/components/widgets/style/FileSelector.css +14 -0
- package/components/widgets/style/InputContainer.css +34 -0
- package/components/widgets/style/LayerCatalogWidget.css +59 -0
- package/components/widgets/style/MenuButton.css +122 -0
- package/components/widgets/style/ModalDialog.css +50 -0
- package/components/widgets/style/NavBar.css +12 -0
- package/components/widgets/style/NumberInput.css +76 -0
- package/components/widgets/style/SearchWidget.css +43 -0
- package/components/widgets/style/Spinner.css +32 -0
- package/components/widgets/style/SuggestionInput.css +8 -0
- package/components/widgets/style/TextInput.css +94 -0
- package/components/widgets/style/ToggleSwitch.css +61 -0
- package/components/widgets/style/VectorLayerPicker.css +3 -0
- package/icons/2d.svg +70 -0
- package/icons/3d.svg +70 -0
- package/icons/3d2d.svg +92 -0
- package/icons/after.svg +76 -0
- package/icons/arrow-down.svg +60 -0
- package/icons/arrow-up.svg +60 -0
- package/icons/before.svg +76 -0
- package/icons/bglayer.svg +71 -0
- package/icons/bookmark.svg +170 -0
- package/icons/box.svg +63 -0
- package/icons/buffer.svg +67 -0
- package/icons/camera.svg +118 -0
- package/icons/catalog.svg +62 -0
- package/icons/checked.svg +80 -0
- package/icons/chevron-down.svg +60 -0
- package/icons/chevron-left.svg +59 -0
- package/icons/chevron-right.svg +60 -0
- package/icons/chevron-up.svg +60 -0
- package/icons/circle.svg +70 -0
- package/icons/clear.svg +62 -0
- package/icons/clock.svg +71 -0
- package/icons/cog.svg +60 -0
- package/icons/collapse.svg +73 -0
- package/icons/compare.svg +72 -0
- package/icons/cone.svg +58 -0
- package/icons/confirm.svg +62 -0
- package/icons/copy.svg +60 -0
- package/icons/cuboid.svg +58 -0
- package/icons/cyclomedia.svg +47 -0
- package/icons/cylinder.svg +58 -0
- package/icons/dataimport.svg +116 -0
- package/icons/detach.svg +79 -0
- package/icons/dock.svg +82 -0
- package/icons/dock_bottom.svg +82 -0
- package/icons/dock_left.svg +84 -0
- package/icons/dock_right.svg +84 -0
- package/icons/dock_top.svg +84 -0
- package/icons/draw.svg +78 -0
- package/icons/editdraw.svg +84 -0
- package/icons/edited.svg +78 -0
- package/icons/editing.svg +118 -0
- package/icons/ellipse.svg +72 -0
- package/icons/embed.svg +88 -0
- package/icons/expand.svg +73 -0
- package/icons/export.svg +126 -0
- package/icons/eye.svg +127 -0
- package/icons/featureform.svg +115 -0
- package/icons/fill.svg +62 -0
- package/icons/filter.svg +69 -0
- package/icons/folder-open.svg +60 -0
- package/icons/freehand.svg +82 -0
- package/icons/group.svg +76 -0
- package/icons/home.svg +60 -0
- package/icons/identify_radius.svg +71 -0
- package/icons/identify_region.svg +71 -0
- package/icons/import.svg +62 -0
- package/icons/info-sign.svg +60 -0
- package/icons/info.svg +80 -0
- package/icons/layers.svg +71 -0
- package/icons/light.svg +77 -0
- package/icons/line.svg +61 -0
- package/icons/line_buffer.svg +65 -0
- package/icons/link.svg +75 -0
- package/icons/list-alt.svg +111 -0
- package/icons/lock.svg +54 -0
- package/icons/login.svg +56 -0
- package/icons/logout.svg +56 -0
- package/icons/map3d.svg +51 -0
- package/icons/maximize.svg +84 -0
- package/icons/measure.svg +82 -0
- package/icons/measure_line.svg +87 -0
- package/icons/measure_polygon.svg +88 -0
- package/icons/menu-hamburger.svg +60 -0
- package/icons/minimize.svg +76 -0
- package/icons/minus-sign.svg +60 -0
- package/icons/minus.svg +61 -0
- package/icons/nav-end.svg +74 -0
- package/icons/nav-left.svg +74 -0
- package/icons/nav-right.svg +74 -0
- package/icons/nav-start.svg +73 -0
- package/icons/new.svg +84 -0
- package/icons/nodetool.svg +68 -0
- package/icons/numericinput.svg +86 -0
- package/icons/ok.svg +60 -0
- package/icons/open.svg +79 -0
- package/icons/open_link.svg +74 -0
- package/icons/paint.svg +75 -0
- package/icons/pen.svg +41 -0
- package/icons/person.svg +44 -0
- package/icons/pick.svg +67 -0
- package/icons/pick_point.svg +74 -0
- package/icons/pick_region.svg +71 -0
- package/icons/plus.svg +60 -0
- package/icons/point.svg +67 -0
- package/icons/point_buffer.svg +74 -0
- package/icons/polygon.svg +61 -0
- package/icons/print.svg +60 -0
- package/icons/pyramid.svg +58 -0
- package/icons/radio_checked.svg +78 -0
- package/icons/radio_tristate.svg +75 -0
- package/icons/radio_unchecked.svg +72 -0
- package/icons/rasterexport.svg +124 -0
- package/icons/rect.svg +63 -0
- package/icons/refresh.svg +44 -0
- package/icons/remove.svg +60 -0
- package/icons/report.svg +84 -0
- package/icons/routing-bicycle.svg +40 -0
- package/icons/routing-bus.svg +40 -0
- package/icons/routing-cablecar.svg +40 -0
- package/icons/routing-car.svg +40 -0
- package/icons/routing-ship.svg +40 -0
- package/icons/routing-train.svg +40 -0
- package/icons/routing-tram.svg +40 -0
- package/icons/routing-truck.svg +40 -0
- package/icons/routing-walking.svg +40 -0
- package/icons/routing.svg +68 -0
- package/icons/save.svg +190 -0
- package/icons/scale.svg +62 -0
- package/icons/screenshot.svg +60 -0
- package/icons/search.svg +60 -0
- package/icons/selectbox.svg +79 -0
- package/icons/share.svg +64 -0
- package/icons/snap_edge.svg +79 -0
- package/icons/snap_vertex.svg +79 -0
- package/icons/sphere.svg +58 -0
- package/icons/square.svg +68 -0
- package/icons/sync.svg +72 -0
- package/icons/text.svg +68 -0
- package/icons/themes.svg +81 -0
- package/icons/tilt-down.svg +67 -0
- package/icons/tilt-left.svg +48 -0
- package/icons/tilt-right.svg +48 -0
- package/icons/tilt-up.svg +67 -0
- package/icons/today.svg +45 -0
- package/icons/tools.svg +77 -0
- package/icons/transformtool.svg +74 -0
- package/icons/transparency.svg +132 -0
- package/icons/trash.svg +60 -0
- package/icons/tree_minus.svg +81 -0
- package/icons/tree_plus.svg +81 -0
- package/icons/triangle-down.svg +59 -0
- package/icons/triangle-left.svg +60 -0
- package/icons/triangle-right.svg +60 -0
- package/icons/triangle-up.svg +59 -0
- package/icons/tristate.svg +79 -0
- package/icons/unchecked.svg +74 -0
- package/icons/undock.svg +82 -0
- package/icons/undock_bottom.svg +82 -0
- package/icons/undock_left.svg +82 -0
- package/icons/undock_right.svg +84 -0
- package/icons/undock_top.svg +84 -0
- package/icons/unmaximize.svg +84 -0
- package/icons/unminimize.svg +76 -0
- package/icons/up-down-arrow.svg +66 -0
- package/icons/warning.svg +72 -0
- package/icons/wedge.svg +58 -0
- package/icons/zoom.svg +60 -0
- package/icons/zoomin.svg +71 -0
- package/icons/zoomout.svg +80 -0
- package/libs/openlayers.js +11 -0
- package/package.json +135 -0
- package/plugins/API.js +114 -0
- package/plugins/AttributeTable.js +25 -0
- package/plugins/Authentication.js +13 -0
- package/plugins/BackgroundSwitcher.js +10 -0
- package/plugins/Bookmark.js +13 -0
- package/plugins/BottomBar.js +10 -0
- package/plugins/CookiePopup.js +9 -0
- package/plugins/Cyclomedia.js +11 -0
- package/plugins/Editing.js +21 -0
- package/plugins/FeatureForm.js +21 -0
- package/plugins/FeatureSearch.js +11 -0
- package/plugins/GeometryDigitizer.js +43 -0
- package/plugins/HeightProfile.js +26 -0
- package/plugins/Help.js +11 -0
- package/plugins/HomeButton.js +9 -0
- package/plugins/Identify.js +18 -0
- package/plugins/LayerCatalog.js +45 -0
- package/plugins/LayerTree.js +15 -0
- package/plugins/LocateButton.js +10 -0
- package/plugins/Map.js +22 -0
- package/plugins/MapCompare.js +11 -0
- package/plugins/MapCopyright.js +11 -0
- package/plugins/MapExport.js +23 -0
- package/plugins/MapFilter.js +20 -0
- package/plugins/MapInfoTooltip.js +32 -0
- package/plugins/MapLegend.js +14 -0
- package/plugins/MapTip.js +15 -0
- package/plugins/Measure.js +10 -0
- package/plugins/NewsPopup.js +12 -0
- package/plugins/Panoramax.js +10 -0
- package/plugins/Portal.js +10 -0
- package/plugins/Print.js +22 -0
- package/plugins/ProcessNotifications.js +11 -0
- package/plugins/Redlining.js +12 -0
- package/plugins/Reports.js +15 -0
- package/plugins/Routing.js +23 -0
- package/plugins/ScratchDrawing.js +15 -0
- package/plugins/Settings.js +12 -0
- package/plugins/Share.js +11 -0
- package/plugins/StartupMarker.js +12 -0
- package/plugins/TaskButton.js +9 -0
- package/plugins/ThemeSwitcher.js +10 -0
- package/plugins/TimeManager.js +21 -0
- package/plugins/TopBar.js +13 -0
- package/plugins/ValueTool.js +11 -0
- package/plugins/View3D.js +34 -0
- package/plugins/ZoomButtons.js +11 -0
- package/plugins/map/EditingSupport.js +13 -0
- package/plugins/map/LocateSupport.js +14 -0
- package/plugins/map/MeasurementSupport.js +15 -0
- package/plugins/map/OverviewSupport.js +14 -0
- package/plugins/map/RedliningPickSupport.js +12 -0
- package/plugins/map/RedliningSupport.js +28 -0
- package/plugins/map/ScaleBarSupport.js +10 -0
- package/plugins/map/SnapInteraction.js +1 -0
- package/plugins/map/SnapSupport.js +7 -0
- package/plugins/map/SnappingSupport.js +23 -0
- package/plugins/map/style/OverviewSupport.css +42 -0
- package/plugins/map/style/ScaleBarSupport.css +18 -0
- package/plugins/map/style/SnappingSupport.css +33 -0
- package/plugins/redlining/RedliningBufferSupport.js +8 -0
- package/plugins/style/AttributeTable.css +220 -0
- package/plugins/style/Authentication.css +16 -0
- package/plugins/style/BackgroundSwitcher.css +99 -0
- package/plugins/style/Bookmark.css +62 -0
- package/plugins/style/BottomBar.css +53 -0
- package/plugins/style/Buttons.css +68 -0
- package/plugins/style/CookiePopup.css +24 -0
- package/plugins/style/Cyclomedia.css +66 -0
- package/plugins/style/Editing.css +40 -0
- package/plugins/style/FeatureForm.css +21 -0
- package/plugins/style/FeatureSearch.css +71 -0
- package/plugins/style/GeometryDigitizer.css +28 -0
- package/plugins/style/HeightProfile.css +26 -0
- package/plugins/style/Identify.css +4 -0
- package/plugins/style/LayerCatalog.css +8 -0
- package/plugins/style/LayerTree.css +316 -0
- package/plugins/style/Map.css +43 -0
- package/plugins/style/MapCompare.css +27 -0
- package/plugins/style/MapCopyright.css +17 -0
- package/plugins/style/MapExport.css +55 -0
- package/plugins/style/MapFilter.css +101 -0
- package/plugins/style/MapInfoTooltip.css +78 -0
- package/plugins/style/MapLegend.css +36 -0
- package/plugins/style/MapTip.css +22 -0
- package/plugins/style/Measure.css +23 -0
- package/plugins/style/NewsPopup.css +87 -0
- package/plugins/style/Panoramax.css +15 -0
- package/plugins/style/Portal.css +115 -0
- package/plugins/style/Print.css +116 -0
- package/plugins/style/ProcessNotifications.css +55 -0
- package/plugins/style/Redlining.css +101 -0
- package/plugins/style/Reports.css +11 -0
- package/plugins/style/Routing.css +243 -0
- package/plugins/style/ScratchDrawing.css +8 -0
- package/plugins/style/Settings.css +11 -0
- package/plugins/style/Share.css +59 -0
- package/plugins/style/ThemeSwitcher.css +7 -0
- package/plugins/style/TimeManager.css +91 -0
- package/plugins/style/TopBar.css +50 -0
- package/plugins/style/ValueTool.css +60 -0
- package/reducers/display.js +7 -0
- package/reducers/editing.js +8 -0
- package/reducers/index.js +7 -0
- package/reducers/layerinfo.js +7 -0
- package/reducers/layers.js +14 -0
- package/reducers/localConfig.js +8 -0
- package/reducers/locale.js +8 -0
- package/reducers/locate.js +8 -0
- package/reducers/map.js +11 -0
- package/reducers/measurement.js +8 -0
- package/reducers/processNotifications.js +7 -0
- package/reducers/redlining.js +7 -0
- package/reducers/redliningPick.js +7 -0
- package/reducers/serviceinfo.js +7 -0
- package/reducers/task.js +7 -0
- package/reducers/theme.js +7 -0
- package/reducers/windows.js +7 -0
- package/scripts/dist.sh +16 -0
- package/scripts/gen-plugin-docs.js +9 -0
- package/scripts/makeIconkit.js +7 -0
- package/scripts/package-commands.bat +8 -0
- package/scripts/package-commands.sh +22 -0
- package/scripts/themesConfig.js +48 -0
- package/scripts/themesConfig.py +659 -0
- package/scripts/translateui.sh +51 -0
- package/scripts/updateTranslations.js +17 -0
- package/scripts/wmts_config_generator.py +169 -0
- package/selectors/searchproviders.js +12 -0
- package/static/translations/bg-BG.json +709 -0
- package/static/translations/ca-ES.json +709 -0
- package/static/translations/cs-CZ.json +709 -0
- package/static/translations/de-CH.json +709 -0
- package/static/translations/de-DE.json +709 -0
- package/static/translations/en-US.json +709 -0
- package/static/translations/es-ES.json +709 -0
- package/static/translations/fi-FI.json +709 -0
- package/static/translations/fr-FR.json +709 -0
- package/static/translations/hu-HU.json +709 -0
- package/static/translations/it-IT.json +709 -0
- package/static/translations/ja-JP.json +709 -0
- package/static/translations/nl-NL.json +709 -0
- package/static/translations/no-NO.json +709 -0
- package/static/translations/pl-PL.json +709 -0
- package/static/translations/pt-BR.json +709 -0
- package/static/translations/pt-PT.json +709 -0
- package/static/translations/ro-RO.json +709 -0
- package/static/translations/ru-RU.json +709 -0
- package/static/translations/sv-SE.json +709 -0
- package/static/translations/tr-TR.json +709 -0
- package/static/translations/tsconfig.json +606 -0
- package/stores/StandardStore.js +8 -0
- package/utils/ConfigUtils.js +9 -0
- package/utils/CoordinatesUtils.js +29 -0
- package/utils/DxfUtils.js +10 -0
- package/utils/EditingInterface.js +67 -0
- package/utils/EditingUtils.js +11 -0
- package/utils/FeatureStyles.js +10 -0
- package/utils/IdentifyUtils.js +12 -0
- package/utils/ImageEditor.js +15 -0
- package/utils/LayerUtils.js +57 -0
- package/utils/LocaleUtils.js +9 -0
- package/utils/MapUtils.js +66 -0
- package/utils/MeasureUtils.js +9 -0
- package/utils/MiscUtils.js +15 -0
- package/utils/PermaLinkUtils.js +11 -0
- package/utils/ResourceRegistry.js +7 -0
- package/utils/RoutingInterface.js +12 -0
- package/utils/SearchProviders.js +19 -0
- package/utils/ServiceLayerUtils.js +20 -0
- package/utils/Signal.js +2 -0
- package/utils/ThemeUtils.js +12 -0
- package/utils/VectorLayerUtils.js +20 -0
- package/utils/expr_grammar/README.md +3 -0
- package/utils/expr_grammar/grammar.js +3 -0
- package/utils/expr_grammar/grammar.ne +118 -0
- package/utils/expr_grammar/test.js +13 -0
- package/utils/img/README.markers +1 -0
- package/utils/img/arrowhead.svg +4 -0
- package/utils/img/marker-icon.png +0 -0
- package/utils/img/measurehead.svg +4 -0
|
@@ -0,0 +1,709 @@
|
|
|
1
|
+
{
|
|
2
|
+
"locale": "en-US",
|
|
3
|
+
"messages": {
|
|
4
|
+
"app": {
|
|
5
|
+
"missingbg": "Unable to find the background \"{0}\", displaying the default background.",
|
|
6
|
+
"missinglayers": "Unable to find the following layers: {0}.",
|
|
7
|
+
"missingpermalink": "The specified permalink or bookmark is invalid or expired.",
|
|
8
|
+
"missingprojection": "Unable to load the theme \"{0}\": the projection {1} is not defined.",
|
|
9
|
+
"missingtheme": "Unable to find the theme \"{0}\", loading the default theme."
|
|
10
|
+
},
|
|
11
|
+
"appmenu": {
|
|
12
|
+
"filter": "Filter menu...",
|
|
13
|
+
"items": {
|
|
14
|
+
"Bookmark": "Bookmarks",
|
|
15
|
+
"Compare3D": "Compare",
|
|
16
|
+
"Editing": "Editing",
|
|
17
|
+
"ExportObjects3D": "Export Objects",
|
|
18
|
+
"Help": "Help",
|
|
19
|
+
"HideObjects3D": "Hide Objects",
|
|
20
|
+
"LayerTree": "Layers & Legend",
|
|
21
|
+
"LayerTree3D": "Layers",
|
|
22
|
+
"MapExport": "Export Map",
|
|
23
|
+
"MapExport3D": "Export Map",
|
|
24
|
+
"MapFilter": "Map Filter",
|
|
25
|
+
"MapLight3D": "Light and Shadows",
|
|
26
|
+
"Print": "Print",
|
|
27
|
+
"Reports": "Reports",
|
|
28
|
+
"Settings": "Settings",
|
|
29
|
+
"Share": "Share Link",
|
|
30
|
+
"ThemeSwitcher": "Theme",
|
|
31
|
+
"AttributeTable": "Attribute Table",
|
|
32
|
+
"AuthenticationLogin": "Login",
|
|
33
|
+
"AuthenticationLogout": "Logout",
|
|
34
|
+
"Cyclomedia": "Cyclomedia",
|
|
35
|
+
"Draw3D": "Draw",
|
|
36
|
+
"FeatureForm": "Feature Form",
|
|
37
|
+
"FeatureSearch": "Feature Search",
|
|
38
|
+
"GeometryDigitizer": "Geometry digitizer",
|
|
39
|
+
"IdentifyPoint": "Identify Point",
|
|
40
|
+
"IdentifyRegion": "Identify Region",
|
|
41
|
+
"LayerCatalog": "Layer catalog",
|
|
42
|
+
"Login": "Login",
|
|
43
|
+
"Logout": "Logout",
|
|
44
|
+
"MapLegend": "Legend",
|
|
45
|
+
"Measure": "Measure",
|
|
46
|
+
"Measure3D": "Measure",
|
|
47
|
+
"MeasureLineString": "Measure a line",
|
|
48
|
+
"MeasurePolygon": "Measure a polygon",
|
|
49
|
+
"NewsPopup": "News",
|
|
50
|
+
"Panoramax": "Panoramax",
|
|
51
|
+
"Portal": "Portal",
|
|
52
|
+
"PrintScreen3D": "Raster Export",
|
|
53
|
+
"Redlining": "Redlining",
|
|
54
|
+
"Routing": "Routing",
|
|
55
|
+
"Tools": "Map Tools",
|
|
56
|
+
"TimeManager": "Time Manager",
|
|
57
|
+
"View3D": "3D View"
|
|
58
|
+
},
|
|
59
|
+
"menulabel": "Map & Tools"
|
|
60
|
+
},
|
|
61
|
+
"attribtable": {
|
|
62
|
+
"addfeature": "Add feature",
|
|
63
|
+
"commit": "Commit changed row",
|
|
64
|
+
"csvexport": "CSV export",
|
|
65
|
+
"delete": "Delete",
|
|
66
|
+
"deletefailed": "One or more features could not be deleted",
|
|
67
|
+
"deletefeatures": "Delete selected features",
|
|
68
|
+
"deleting": "Deleting features...",
|
|
69
|
+
"discard": "Discard changed row",
|
|
70
|
+
"formeditmode": "Open the edit form for the selected feature",
|
|
71
|
+
"geomnoadd": "Please use the edit form for adding new features to this layer",
|
|
72
|
+
"limittoextent": "Limit to map extent",
|
|
73
|
+
"loadfailed": "Failed to load the feature data",
|
|
74
|
+
"loading": "Loading...",
|
|
75
|
+
"nodelete": "Don't delete",
|
|
76
|
+
"nogeomnoform": "The edit form is not available for geometryless layers",
|
|
77
|
+
"pleasereload": "Press 'Reload' to load the attribute table...",
|
|
78
|
+
"reload": "Reload",
|
|
79
|
+
"selectlayer": "Select layer...",
|
|
80
|
+
"title": "Attribute Table",
|
|
81
|
+
"zoomtoselection": "Zoom to selected features"
|
|
82
|
+
},
|
|
83
|
+
"bgswitcher": {
|
|
84
|
+
"nobg": "No background"
|
|
85
|
+
},
|
|
86
|
+
"bookmark": {
|
|
87
|
+
"add": "Create new bookmark",
|
|
88
|
+
"addfailed": "Failed to create bookmark",
|
|
89
|
+
"description": "Enter description...",
|
|
90
|
+
"lastUpdate": "Last saved",
|
|
91
|
+
"manage": "Manage bookmarks",
|
|
92
|
+
"nobookmarks": "No bookmarks",
|
|
93
|
+
"notloggedin": "You need to be logged in to store bookmarks",
|
|
94
|
+
"open": "Open bookmark in current tab",
|
|
95
|
+
"openTab": "Open bookmark in tab",
|
|
96
|
+
"remove": "Remove bookmark",
|
|
97
|
+
"removefailed": "Failed to remove bookmark",
|
|
98
|
+
"savefailed": "Failed to update bookmark",
|
|
99
|
+
"update": "Update bookmark",
|
|
100
|
+
"zoomToExtent": "Zoom to extent"
|
|
101
|
+
},
|
|
102
|
+
"bottombar": {
|
|
103
|
+
"mousepos_label": "Coordinates",
|
|
104
|
+
"scale_label": "Scale",
|
|
105
|
+
"terms_label": "Terms of use",
|
|
106
|
+
"viewertitle_label": "Homepage"
|
|
107
|
+
},
|
|
108
|
+
"compare3d": {
|
|
109
|
+
"clipplane": "Clipping plane",
|
|
110
|
+
"compare_objects": "Compare objects",
|
|
111
|
+
"toggleall": "Toggle all"
|
|
112
|
+
},
|
|
113
|
+
"cookiepopup": {
|
|
114
|
+
"accept": "Accept",
|
|
115
|
+
"message": "This website uses cookies."
|
|
116
|
+
},
|
|
117
|
+
"copybtn": {
|
|
118
|
+
"click_to_copy": "Click to copy",
|
|
119
|
+
"copied": "Copied",
|
|
120
|
+
"copyfailed": "Copy failed"
|
|
121
|
+
},
|
|
122
|
+
"cyclomedia": {
|
|
123
|
+
"clickonmap": "Click on a recording on the map",
|
|
124
|
+
"initializing": "Initializing Cyclomedia...",
|
|
125
|
+
"loaderror": "Failed to initialize Cyclomedia",
|
|
126
|
+
"loading": "Loading view...",
|
|
127
|
+
"login": "Login",
|
|
128
|
+
"scalehint": "The recordings are only visible on the map below scale 1:{0}.",
|
|
129
|
+
"title": "Cyclomedia Viewer"
|
|
130
|
+
},
|
|
131
|
+
"draw3d": {
|
|
132
|
+
"cone": "Cone",
|
|
133
|
+
"cuboid": "Cuboid",
|
|
134
|
+
"cylinder": "Cylinder",
|
|
135
|
+
"delete": "Delete",
|
|
136
|
+
"drawings": "Drawings",
|
|
137
|
+
"intersect": "Intersect",
|
|
138
|
+
"newgroupprompt": "New drawing group",
|
|
139
|
+
"numericinput": "Numeric input",
|
|
140
|
+
"pick": "Pick",
|
|
141
|
+
"position": "Position",
|
|
142
|
+
"pyramid": "Pyramid",
|
|
143
|
+
"rotate": "Rotate",
|
|
144
|
+
"rotation": "Rotation",
|
|
145
|
+
"scale": "Scale",
|
|
146
|
+
"sphere": "Sphere",
|
|
147
|
+
"subtract": "Subtract",
|
|
148
|
+
"thescale": "Scale",
|
|
149
|
+
"translate": "Translate",
|
|
150
|
+
"undoBool": "Undo operation",
|
|
151
|
+
"union": "Union",
|
|
152
|
+
"wedge": "Wedge"
|
|
153
|
+
},
|
|
154
|
+
"editing": {
|
|
155
|
+
"add": "Add",
|
|
156
|
+
"attrtable": "Table",
|
|
157
|
+
"canceldelete": "Don't delete",
|
|
158
|
+
"clearpicture": "Clear",
|
|
159
|
+
"commit": "Commit",
|
|
160
|
+
"commitfailed": "Commit failed",
|
|
161
|
+
"contraintviolation": "Constraint violation",
|
|
162
|
+
"create": "Create",
|
|
163
|
+
"delete": "Delete",
|
|
164
|
+
"discard": "Discard",
|
|
165
|
+
"draw": "Draw",
|
|
166
|
+
"feature": "Feature",
|
|
167
|
+
"geomreadonly": "The geometry contains non-zero Z values and is therefore read only.",
|
|
168
|
+
"invalidform": "Invalid form",
|
|
169
|
+
"maximize": "Maximize",
|
|
170
|
+
"minimize": "Minimize",
|
|
171
|
+
"noeditablelayers": "No editable layers.",
|
|
172
|
+
"paint": "Modify",
|
|
173
|
+
"pick": "Pick",
|
|
174
|
+
"pickdrawfeature": "Clone existing geometry",
|
|
175
|
+
"reallydelete": "Delete",
|
|
176
|
+
"relationcommitfailed": "Some relation values could not be committed, check the icon tooltips for details",
|
|
177
|
+
"select": "Select",
|
|
178
|
+
"takepicture": "Take picture",
|
|
179
|
+
"unsavedchanged": "There are unsaved changes. Do you want to leave the page anyway?"
|
|
180
|
+
},
|
|
181
|
+
"featureform": {
|
|
182
|
+
"feature": "Feature",
|
|
183
|
+
"noresults": "No results",
|
|
184
|
+
"querying": "Querying...",
|
|
185
|
+
"title": "Feature form"
|
|
186
|
+
},
|
|
187
|
+
"featuresearch": {
|
|
188
|
+
"noresults": "No results",
|
|
189
|
+
"query": "Query",
|
|
190
|
+
"select": "Select...",
|
|
191
|
+
"title": "Feature search"
|
|
192
|
+
},
|
|
193
|
+
"fileselector": {
|
|
194
|
+
"files": "files",
|
|
195
|
+
"placeholder": "Select file..."
|
|
196
|
+
},
|
|
197
|
+
"geomdigitizer": {
|
|
198
|
+
"applink": "Application",
|
|
199
|
+
"bufferlayername": "Digitization buffer",
|
|
200
|
+
"chooselink": "Choose...",
|
|
201
|
+
"clear": "Clear layer",
|
|
202
|
+
"identifypick": "Pick feature",
|
|
203
|
+
"identifypickregion": "Pick features in region",
|
|
204
|
+
"layername": "Digitization",
|
|
205
|
+
"line_buffer": "Line (to buffer)",
|
|
206
|
+
"point_buffer": "Point (to buffer)",
|
|
207
|
+
"selfinter": "One or more polygons contain self-intersections",
|
|
208
|
+
"send": "Send",
|
|
209
|
+
"wait": "Loading..."
|
|
210
|
+
},
|
|
211
|
+
"heightprofile": {
|
|
212
|
+
"asl": "a.s.l.",
|
|
213
|
+
"distance": "Distance",
|
|
214
|
+
"drawnodes": "Draw nodes",
|
|
215
|
+
"error": "Failed to compute height profile",
|
|
216
|
+
"export": "Export profile",
|
|
217
|
+
"height": "Height",
|
|
218
|
+
"loading": "Calculating height profile...",
|
|
219
|
+
"loadingimage": "Loading map image...",
|
|
220
|
+
"print": "Print height profile",
|
|
221
|
+
"title": "Height profile"
|
|
222
|
+
},
|
|
223
|
+
"hideobjects3d": {
|
|
224
|
+
"clickonmap": "Click on objects to hide them...",
|
|
225
|
+
"object": "Object",
|
|
226
|
+
"restore": "Restore object",
|
|
227
|
+
"restoreall": "Restore all"
|
|
228
|
+
},
|
|
229
|
+
"identify": {
|
|
230
|
+
"aggregatedreport": "Aggregated report",
|
|
231
|
+
"clipboard": "Copy to clipboard",
|
|
232
|
+
"download": "Download",
|
|
233
|
+
"export": "Export",
|
|
234
|
+
"featureReport": "Feature report",
|
|
235
|
+
"featurecount": "Feature count",
|
|
236
|
+
"layerall": "All layers",
|
|
237
|
+
"link": "Link",
|
|
238
|
+
"noattributes": "No attributes",
|
|
239
|
+
"noresults": "No information available for the selected point",
|
|
240
|
+
"querying": "Querying...",
|
|
241
|
+
"reportfail": "Failed to generate report",
|
|
242
|
+
"selectlayer": "Select layer...",
|
|
243
|
+
"title": "Feature Info"
|
|
244
|
+
},
|
|
245
|
+
"imageeditor": {
|
|
246
|
+
"confirmclose": "Close without saving?",
|
|
247
|
+
"title": "Image editor"
|
|
248
|
+
},
|
|
249
|
+
"importlayer": {
|
|
250
|
+
"addfailed": "Failed to add layer.",
|
|
251
|
+
"addlayer": "Add layer",
|
|
252
|
+
"asgroup": "Add as group",
|
|
253
|
+
"connect": "Connect",
|
|
254
|
+
"filter": "Filter...",
|
|
255
|
+
"loading": "Loading...",
|
|
256
|
+
"localfile": "Local file",
|
|
257
|
+
"nofeatures": "No features could be imported.",
|
|
258
|
+
"noresults": "No results or invalid URL",
|
|
259
|
+
"notgeopdf": "The selected file does not seem to be a GeoPDF.",
|
|
260
|
+
"shpreprojectionerror": "The Shapefile geometry could not be reprojected, and may be misplaced.",
|
|
261
|
+
"supportedformats": "Supported formats: KML, GeoJSON, GeoPDF, SHP (in zip)",
|
|
262
|
+
"unknownproj": "The selected GeoPDF uses an unknown projection: {0}.",
|
|
263
|
+
"url": "URL",
|
|
264
|
+
"urlplaceholder": "Enter URL to WMS, WMTS, WFS..."
|
|
265
|
+
},
|
|
266
|
+
"infotool": {
|
|
267
|
+
"clickhelpPoint": "Click a location to identify in the map...",
|
|
268
|
+
"clickhelpPolygon": "Draw a polygon around the features to identify...",
|
|
269
|
+
"clickhelpRadius": "Set a radius and click a location to identify features around the point...",
|
|
270
|
+
"radius": "Radius"
|
|
271
|
+
},
|
|
272
|
+
"layercatalog": {
|
|
273
|
+
"windowtitle": "Layer catalog"
|
|
274
|
+
},
|
|
275
|
+
"layerinfo": {
|
|
276
|
+
"abstract": "Abstract",
|
|
277
|
+
"attribution": "Attribution",
|
|
278
|
+
"dataUrl": "Data URL",
|
|
279
|
+
"keywords": "Keywords",
|
|
280
|
+
"legend": "Legend",
|
|
281
|
+
"maxscale": "Max. displayscale",
|
|
282
|
+
"metadataUrl": "Metadata URL",
|
|
283
|
+
"minscale": "Min. displayscale",
|
|
284
|
+
"title": "Layer Info"
|
|
285
|
+
},
|
|
286
|
+
"layertree": {
|
|
287
|
+
"compare": "Compare top layer",
|
|
288
|
+
"deletealllayers": "Remove all layers",
|
|
289
|
+
"importlayer": "Import layer",
|
|
290
|
+
"maptip": "Show layer map tips",
|
|
291
|
+
"printlegend": "Print legend",
|
|
292
|
+
"separator": "Separator",
|
|
293
|
+
"separatortooltip": "Add separator",
|
|
294
|
+
"transparency": "Trasparency",
|
|
295
|
+
"visiblefilter": "Filter invisible layers",
|
|
296
|
+
"zoomtolayer": "Zoom to layer"
|
|
297
|
+
},
|
|
298
|
+
"layertree3d": {
|
|
299
|
+
"import": "Import",
|
|
300
|
+
"importobjects": "Import objects",
|
|
301
|
+
"layers": "Layers",
|
|
302
|
+
"objects": "Objects",
|
|
303
|
+
"supportedformats": "Supported formats: GLTF",
|
|
304
|
+
"zoomtoobject": "Zoom to object"
|
|
305
|
+
},
|
|
306
|
+
"linkfeatureform": {
|
|
307
|
+
"cancel": "Cancel",
|
|
308
|
+
"close": "Close",
|
|
309
|
+
"drawhint": "Draw the feature on the map...",
|
|
310
|
+
"pickhint": "Pick a feature on the map..."
|
|
311
|
+
},
|
|
312
|
+
"locate": {
|
|
313
|
+
"feetUnit": "feet",
|
|
314
|
+
"metersUnit": "meters",
|
|
315
|
+
"popup": "You are within {distance} {unit} from this point",
|
|
316
|
+
"statustooltip": {
|
|
317
|
+
"DISABLED": "Position: disabled",
|
|
318
|
+
"ENABLED": "Position: enabled",
|
|
319
|
+
"FOLLOWING": "Position: following",
|
|
320
|
+
"LOCATING": "Position: locating...",
|
|
321
|
+
"PERMISSION_DENIED": "Position: permission denied"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"map": {
|
|
325
|
+
"loading": "Loading...",
|
|
326
|
+
"resetrotation": "Reset rotation"
|
|
327
|
+
},
|
|
328
|
+
"map3d": {
|
|
329
|
+
"syncview": "Synchronize view",
|
|
330
|
+
"terrain": "Terrain",
|
|
331
|
+
"title": "3D View"
|
|
332
|
+
},
|
|
333
|
+
"mapexport": {
|
|
334
|
+
"configuration": "Configuration",
|
|
335
|
+
"format": "Format",
|
|
336
|
+
"resolution": "Resolution",
|
|
337
|
+
"scale": "Scale",
|
|
338
|
+
"size": "Size",
|
|
339
|
+
"submit": "Export",
|
|
340
|
+
"usersize": "Select on map...",
|
|
341
|
+
"wait": "Please wait..."
|
|
342
|
+
},
|
|
343
|
+
"mapfilter": {
|
|
344
|
+
"addcustomfilter": "Add custom filter",
|
|
345
|
+
"brokenrendering": "Map rendering may be broken due to an invalid filter expression",
|
|
346
|
+
"cancel": "Cancel",
|
|
347
|
+
"geomfilter": "Geometry",
|
|
348
|
+
"hidefiltergeom": "Hide filter geometry",
|
|
349
|
+
"invalidfilter": "Invalid filter expression",
|
|
350
|
+
"save": "Save",
|
|
351
|
+
"select": "Select...",
|
|
352
|
+
"selectlayer": "Select layer",
|
|
353
|
+
"timefilter": "Time",
|
|
354
|
+
"timefrom": "From",
|
|
355
|
+
"timeto": "To"
|
|
356
|
+
},
|
|
357
|
+
"mapinfotooltip": {
|
|
358
|
+
"elevation": "Elevation",
|
|
359
|
+
"title": "Position"
|
|
360
|
+
},
|
|
361
|
+
"maplegend": {
|
|
362
|
+
"bboxdependent": "Map extent dependent legend",
|
|
363
|
+
"onlyvisible": "Only visibile layers",
|
|
364
|
+
"scaledependent": "Map scale depdendent legend",
|
|
365
|
+
"windowtitle": "Legend"
|
|
366
|
+
},
|
|
367
|
+
"maplight3d": {
|
|
368
|
+
"ambientLightIntensity": "Ambient light intensity",
|
|
369
|
+
"animationstep": "Animation step",
|
|
370
|
+
"date": "Date",
|
|
371
|
+
"dayspersec": "days / second",
|
|
372
|
+
"directionalLightIntensity": "Directional light intensity",
|
|
373
|
+
"helpersVisible": "Show helpers",
|
|
374
|
+
"minspersec": "mins / second",
|
|
375
|
+
"normalBias": "Normal bias",
|
|
376
|
+
"shadowBias": "Shadow bias",
|
|
377
|
+
"shadowMapSize": "Shadowmap size",
|
|
378
|
+
"shadowType": "Shadow type",
|
|
379
|
+
"shadowVolumeFar": "Shadow volume near",
|
|
380
|
+
"shadowVolumeNear": "Shadow volume far",
|
|
381
|
+
"shadowintensity": "Shadow intensity",
|
|
382
|
+
"shadows": "Enable shadows",
|
|
383
|
+
"showadvanced": "Show advanced",
|
|
384
|
+
"time": "Time",
|
|
385
|
+
"zFactor": "Z-factor"
|
|
386
|
+
},
|
|
387
|
+
"measureComponent": {
|
|
388
|
+
"absolute": "m AMSL",
|
|
389
|
+
"areaLabel": "Area",
|
|
390
|
+
"bearingLabel": "Bearing",
|
|
391
|
+
"ground": "m AGL",
|
|
392
|
+
"imperial": "Imperial",
|
|
393
|
+
"lengthLabel": "Length",
|
|
394
|
+
"metric": "Metric",
|
|
395
|
+
"pointLabel": "Position"
|
|
396
|
+
},
|
|
397
|
+
"misc": {
|
|
398
|
+
"ctrlclickhint": "Open with Ctrl+Click"
|
|
399
|
+
},
|
|
400
|
+
"navbar": {
|
|
401
|
+
"perpage": "per page"
|
|
402
|
+
},
|
|
403
|
+
"newspopup": {
|
|
404
|
+
"dialogclose": "Close",
|
|
405
|
+
"dontshowagain": "Don't show again",
|
|
406
|
+
"title": "News"
|
|
407
|
+
},
|
|
408
|
+
"numericinput": {
|
|
409
|
+
"angle": "Angle",
|
|
410
|
+
"featureunsupported": "Numeric input unavailable for this geometry",
|
|
411
|
+
"height": "Height",
|
|
412
|
+
"nofeature": "No active feature",
|
|
413
|
+
"side": "Side",
|
|
414
|
+
"width": "Width",
|
|
415
|
+
"windowtitle": "Numeric input"
|
|
416
|
+
},
|
|
417
|
+
"panoramax": {
|
|
418
|
+
"notfound": "There is no image available for this location.",
|
|
419
|
+
"title": "Panoramax Viewer"
|
|
420
|
+
},
|
|
421
|
+
"pickfeature": {
|
|
422
|
+
"querying": "Querying..."
|
|
423
|
+
},
|
|
424
|
+
"portal": {
|
|
425
|
+
"filter": "Filter themes...",
|
|
426
|
+
"menulabel": "Menu"
|
|
427
|
+
},
|
|
428
|
+
"print": {
|
|
429
|
+
"atlasfeature": "Atlas feature",
|
|
430
|
+
"download": "Download",
|
|
431
|
+
"download_as_onepdf": "as one PDF document",
|
|
432
|
+
"download_as_onezip": "as one ZIP file",
|
|
433
|
+
"download_as_single": "as single files",
|
|
434
|
+
"format": "Format",
|
|
435
|
+
"grid": "Grid",
|
|
436
|
+
"layout": "Layout",
|
|
437
|
+
"legend": "Legend",
|
|
438
|
+
"maximize": "Maximize",
|
|
439
|
+
"minimize": "Minimize",
|
|
440
|
+
"nolayouts": "The selected theme does not support printing",
|
|
441
|
+
"notheme": "No theme selected",
|
|
442
|
+
"output": "Print output",
|
|
443
|
+
"overlap": "Overlap",
|
|
444
|
+
"pickatlasfeature": "Pick in layer {0}...",
|
|
445
|
+
"resolution": "Resolution",
|
|
446
|
+
"rotation": "Rotation",
|
|
447
|
+
"save": "Save",
|
|
448
|
+
"scale": "Scale",
|
|
449
|
+
"series": "Print series",
|
|
450
|
+
"submit": "Print",
|
|
451
|
+
"wait": "Please wait..."
|
|
452
|
+
},
|
|
453
|
+
"qtdesignerform": {
|
|
454
|
+
"loading": "Loading form..."
|
|
455
|
+
},
|
|
456
|
+
"redlining": {
|
|
457
|
+
"border": "Border",
|
|
458
|
+
"buffer": "Buffer",
|
|
459
|
+
"buffercompute": "Compute",
|
|
460
|
+
"bufferdistance": "Distance",
|
|
461
|
+
"bufferlayer": "Destination",
|
|
462
|
+
"bufferlayername": "Buffer",
|
|
463
|
+
"bufferselectfeature": "Select a feature to buffer...",
|
|
464
|
+
"circle": "Circle",
|
|
465
|
+
"delete": "Delete",
|
|
466
|
+
"draw": "Draw",
|
|
467
|
+
"edit": "Edit",
|
|
468
|
+
"ellipse": "Ellipse",
|
|
469
|
+
"export": "Export",
|
|
470
|
+
"freehand": "Freehand drawing",
|
|
471
|
+
"label": "Label",
|
|
472
|
+
"layer": "Layer",
|
|
473
|
+
"layertitle": "Redlining",
|
|
474
|
+
"line": "Line",
|
|
475
|
+
"markers": "Markers",
|
|
476
|
+
"measurements": "Show measurements",
|
|
477
|
+
"numericinput": "Numeric input",
|
|
478
|
+
"pick": "Pick",
|
|
479
|
+
"point": "Point",
|
|
480
|
+
"polygon": "Polygon",
|
|
481
|
+
"rectangle": "Rectangle",
|
|
482
|
+
"size": "Size",
|
|
483
|
+
"square": "Square",
|
|
484
|
+
"text": "Text",
|
|
485
|
+
"transform": "Transform",
|
|
486
|
+
"width": "Width"
|
|
487
|
+
},
|
|
488
|
+
"reports": {
|
|
489
|
+
"all": "All",
|
|
490
|
+
"download": "Download",
|
|
491
|
+
"pick": "Pick",
|
|
492
|
+
"region": "Select region",
|
|
493
|
+
"selectlayer": "Select report layer..."
|
|
494
|
+
},
|
|
495
|
+
"routing": {
|
|
496
|
+
"add": "Add point",
|
|
497
|
+
"addviapoint": "Via here",
|
|
498
|
+
"arriveat": "Arrive at",
|
|
499
|
+
"clear": "Clear",
|
|
500
|
+
"computefailed": "Failed to compute",
|
|
501
|
+
"computing": "Computing...",
|
|
502
|
+
"excludepolygons": "Exclude areas",
|
|
503
|
+
"export": "Export",
|
|
504
|
+
"fastest": "Fastest",
|
|
505
|
+
"fromhere": "From here",
|
|
506
|
+
"importerror": "Import failed. The file contents must be a GeoJSON FeatureCollection of Point features.",
|
|
507
|
+
"importhint": "File with a GeoJSON FeatureCollection of Point features",
|
|
508
|
+
"importpoints": "Import",
|
|
509
|
+
"iso_intervals": "Intervals",
|
|
510
|
+
"iso_mode": "Mode",
|
|
511
|
+
"iso_mode_distance": "Distance",
|
|
512
|
+
"iso_mode_time": "Time",
|
|
513
|
+
"isocenter": "Center",
|
|
514
|
+
"isoextracenter": "Additional center",
|
|
515
|
+
"leaveat": "Leave at",
|
|
516
|
+
"leavenow": "Leave now",
|
|
517
|
+
"maxspeed": "Max speed",
|
|
518
|
+
"method": "Method",
|
|
519
|
+
"mode_auto": "Car",
|
|
520
|
+
"mode_bicycle": "Bicycle",
|
|
521
|
+
"mode_heavyvehicle": "Heavy vehicle",
|
|
522
|
+
"mode_transit": "Transit",
|
|
523
|
+
"mode_walking": "Walking",
|
|
524
|
+
"optimized_route": "Optimized route",
|
|
525
|
+
"reachability": "Reachability",
|
|
526
|
+
"roundtrip": "Roundtrip",
|
|
527
|
+
"route": "Route",
|
|
528
|
+
"shortest": "Shortest",
|
|
529
|
+
"tohere": "To here",
|
|
530
|
+
"useferries": "Use ferries",
|
|
531
|
+
"usehighways": "Use highways",
|
|
532
|
+
"usetollways": "Use tollways",
|
|
533
|
+
"windowtitle": "Routing"
|
|
534
|
+
},
|
|
535
|
+
"scratchdrawing": {
|
|
536
|
+
"finish": "Finish"
|
|
537
|
+
},
|
|
538
|
+
"search": {
|
|
539
|
+
"all": "All",
|
|
540
|
+
"circleradius": "Circle radius",
|
|
541
|
+
"clearfilter": "Clear",
|
|
542
|
+
"existinglayer": "The layer already exists in the map",
|
|
543
|
+
"filter": "Refine search",
|
|
544
|
+
"layers": "Layers",
|
|
545
|
+
"limittoarea": "Limit to area",
|
|
546
|
+
"more": "{0} more results",
|
|
547
|
+
"nodescription": "No description available",
|
|
548
|
+
"none": "None",
|
|
549
|
+
"noresults": "No results",
|
|
550
|
+
"placeholder": "Search place or add map...",
|
|
551
|
+
"places": "Places",
|
|
552
|
+
"providerselection": "Search providers",
|
|
553
|
+
"recent": "Recent searches",
|
|
554
|
+
"search": "Search",
|
|
555
|
+
"themelayers": "Theme layers",
|
|
556
|
+
"themes": "Themes",
|
|
557
|
+
"unknownmore": "More results"
|
|
558
|
+
},
|
|
559
|
+
"serviceinfo": {
|
|
560
|
+
"abstract": "Abstract",
|
|
561
|
+
"contactEmail": "Email",
|
|
562
|
+
"contactOrganization": "Organization",
|
|
563
|
+
"contactPerson": "Contact person",
|
|
564
|
+
"contactPhone": "Phone",
|
|
565
|
+
"contactPosition": "Position",
|
|
566
|
+
"keywords": "Keywords",
|
|
567
|
+
"onlineResource": "Online resource",
|
|
568
|
+
"title": "Theme Information"
|
|
569
|
+
},
|
|
570
|
+
"settings": {
|
|
571
|
+
"bookmarks": "Bookmarks",
|
|
572
|
+
"colorscheme": "Color scheme",
|
|
573
|
+
"confirmlang": "The application will be reloaded to change the language. Proceed?",
|
|
574
|
+
"default": "Default",
|
|
575
|
+
"defaulttheme": "Default theme",
|
|
576
|
+
"defaultthemefailed": "Failed to set the default theme: {0}",
|
|
577
|
+
"language": "Language",
|
|
578
|
+
"systemlang": "System language",
|
|
579
|
+
"themes": "Themes"
|
|
580
|
+
},
|
|
581
|
+
"share": {
|
|
582
|
+
"QRCodeLinkTitle": "QR Code",
|
|
583
|
+
"directLinkTitle": "Via a direct link",
|
|
584
|
+
"expires": "This permalink is valid until {0}.",
|
|
585
|
+
"norestriction": "No restriction",
|
|
586
|
+
"refresh": "Generate permalink",
|
|
587
|
+
"restricttogroup": "Restrict to group",
|
|
588
|
+
"shareTitle": "QWC2",
|
|
589
|
+
"showpin": "Show pin",
|
|
590
|
+
"socialIntro": "In your favourite social network"
|
|
591
|
+
},
|
|
592
|
+
"snapping": {
|
|
593
|
+
"edge": "Snap to edges",
|
|
594
|
+
"loading": "Loading snapping geometries...",
|
|
595
|
+
"snappingenabled": "Snapping",
|
|
596
|
+
"vertex": "Snap to vertices"
|
|
597
|
+
},
|
|
598
|
+
"themelayerslist": {
|
|
599
|
+
"addlayer": "Add layer",
|
|
600
|
+
"addlayerstotheme": "Add layers to current map",
|
|
601
|
+
"addselectedlayers": "Add selected layer(s)",
|
|
602
|
+
"existinglayers": "The following layers already exists in the map"
|
|
603
|
+
},
|
|
604
|
+
"themeswitcher": {
|
|
605
|
+
"addlayerstotheme": "Add layers to current map",
|
|
606
|
+
"addtotheme": "Add to current theme",
|
|
607
|
+
"changedefaulttheme": "Select this theme as default theme",
|
|
608
|
+
"confirmswitch": "Non-theme layers will be lost when switching theme. Proceed?",
|
|
609
|
+
"filter": "Filter...",
|
|
610
|
+
"match": {
|
|
611
|
+
"abstract": "Abstract",
|
|
612
|
+
"keywords": "Keywords",
|
|
613
|
+
"title": "Title"
|
|
614
|
+
},
|
|
615
|
+
"openintab": "Open in Tab",
|
|
616
|
+
"restrictedthemeinfo": "You are not permitted to view the theme or not logged in"
|
|
617
|
+
},
|
|
618
|
+
"timemanager": {
|
|
619
|
+
"animationinterval": "Animation interval",
|
|
620
|
+
"classify": "Classification attribute",
|
|
621
|
+
"classifynone": "None",
|
|
622
|
+
"displayfeatures": "Timeline with features",
|
|
623
|
+
"displaylayers": "Timeline with layers",
|
|
624
|
+
"displayminimal": "Timeline only",
|
|
625
|
+
"edit": "Edit",
|
|
626
|
+
"endtime": "End",
|
|
627
|
+
"filterwarning": "Map filters are active",
|
|
628
|
+
"future": "Future",
|
|
629
|
+
"group": "Grouping attribute",
|
|
630
|
+
"groupnone": "None",
|
|
631
|
+
"home": "Reset timeline",
|
|
632
|
+
"loading": "Loading...",
|
|
633
|
+
"loop": "Loop",
|
|
634
|
+
"markers": "Markers",
|
|
635
|
+
"notemporaldata": "No temporal layers are visible in the map.",
|
|
636
|
+
"now": "Now",
|
|
637
|
+
"past": "Past",
|
|
638
|
+
"play": "Play",
|
|
639
|
+
"playrev": "Play backwards",
|
|
640
|
+
"rewind": "Rewind",
|
|
641
|
+
"starttime": "Start",
|
|
642
|
+
"stepback": "Step back",
|
|
643
|
+
"stepfwd": "Step forward",
|
|
644
|
+
"stepsize": "Step size",
|
|
645
|
+
"stop": "Stop",
|
|
646
|
+
"timeline": "Timeline",
|
|
647
|
+
"timeline_fixed": "Fixed",
|
|
648
|
+
"timeline_infinite": "Infinite",
|
|
649
|
+
"timelinedisplay": "Display",
|
|
650
|
+
"timelinescale": "Timescale (non-linearity)",
|
|
651
|
+
"title": "Time manager",
|
|
652
|
+
"toggle": "Temporal navigation",
|
|
653
|
+
"unit": {
|
|
654
|
+
"century": "centuries",
|
|
655
|
+
"days": "days",
|
|
656
|
+
"decade": "decades",
|
|
657
|
+
"hours": "hours",
|
|
658
|
+
"milliseconds": "milliseconds",
|
|
659
|
+
"minutes": "minutes",
|
|
660
|
+
"months": "months",
|
|
661
|
+
"seconds": "seconds",
|
|
662
|
+
"years": "years"
|
|
663
|
+
},
|
|
664
|
+
"zoomin": "Zoom in",
|
|
665
|
+
"zoomout": "Zoom out"
|
|
666
|
+
},
|
|
667
|
+
"tooltip": {
|
|
668
|
+
"background": "Switch background",
|
|
669
|
+
"fullscreendisable": "Disable full screen mode",
|
|
670
|
+
"fullscreenenable": "Enable full screen mode",
|
|
671
|
+
"home": "Show entire map",
|
|
672
|
+
"zoomin": "Zoom in",
|
|
673
|
+
"zoomout": "Zoom out"
|
|
674
|
+
},
|
|
675
|
+
"valuetool": {
|
|
676
|
+
"all": "All",
|
|
677
|
+
"allbands": "All bands",
|
|
678
|
+
"alllayers": "All layers",
|
|
679
|
+
"bands": "Bands",
|
|
680
|
+
"graph": "Graph",
|
|
681
|
+
"layer": "Layer",
|
|
682
|
+
"nodata": "No data",
|
|
683
|
+
"options": "Options",
|
|
684
|
+
"selectedbands": "Selected bands",
|
|
685
|
+
"selectedlayers": "Selected layers",
|
|
686
|
+
"selectlayersbands": "Select layers / bands",
|
|
687
|
+
"showbands": "Show bands",
|
|
688
|
+
"showlayers": "Show layers",
|
|
689
|
+
"table": "Table",
|
|
690
|
+
"title": "Value Tool",
|
|
691
|
+
"visiblelayers": "Visible"
|
|
692
|
+
},
|
|
693
|
+
"vectorlayerpicker": {
|
|
694
|
+
"none": "None",
|
|
695
|
+
"prompt": "Enter layer name"
|
|
696
|
+
},
|
|
697
|
+
"window": {
|
|
698
|
+
"close": "Close",
|
|
699
|
+
"detach": "Detach",
|
|
700
|
+
"dock": "Dock",
|
|
701
|
+
"embed": "Embed",
|
|
702
|
+
"maximize": "Maximize",
|
|
703
|
+
"minimize": "Minimize",
|
|
704
|
+
"undock": "Undock",
|
|
705
|
+
"unmaximize": "Restore",
|
|
706
|
+
"unminimize": "Unminimize"
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
}
|