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": "nl-NL",
|
|
3
|
+
"messages": {
|
|
4
|
+
"app": {
|
|
5
|
+
"missingbg": "Kan de achtergrond \"{0}\" niet vinden, Standaard achtergrond wordt weergegeven.",
|
|
6
|
+
"missinglayers": "Kan de volgende lagen niet vinden: {0}.",
|
|
7
|
+
"missingpermalink": "De opgegeven permalink of bladwijzer is ongeldig of verlopen.",
|
|
8
|
+
"missingprojection": "Kan de kaart \"{0}\": de projectie {1} is niet gedefinieerd.",
|
|
9
|
+
"missingtheme": "Kan de kaart \"{0}\" niet vinden, default kaart wordt geladen."
|
|
10
|
+
},
|
|
11
|
+
"appmenu": {
|
|
12
|
+
"filter": "Filter menu...",
|
|
13
|
+
"items": {
|
|
14
|
+
"Bookmark": "Bladwijzers",
|
|
15
|
+
"Compare3D": "",
|
|
16
|
+
"Editing": "Bewerken",
|
|
17
|
+
"ExportObjects3D": "",
|
|
18
|
+
"Help": "Help",
|
|
19
|
+
"HideObjects3D": "",
|
|
20
|
+
"LayerTree": "Lagen & legenda",
|
|
21
|
+
"LayerTree3D": "",
|
|
22
|
+
"MapExport": "Export kaart",
|
|
23
|
+
"MapExport3D": "",
|
|
24
|
+
"MapFilter": "Kaartfilter",
|
|
25
|
+
"MapLight3D": "",
|
|
26
|
+
"Print": "Print",
|
|
27
|
+
"Reports": "",
|
|
28
|
+
"Settings": "Instellingen",
|
|
29
|
+
"Share": "Link delen",
|
|
30
|
+
"ThemeSwitcher": "Kaartselectie",
|
|
31
|
+
"AttributeTable": "Attributentabel",
|
|
32
|
+
"AuthenticationLogin": "Inloggen",
|
|
33
|
+
"AuthenticationLogout": "Uitloggen",
|
|
34
|
+
"Cyclomedia": "Cyclomedia",
|
|
35
|
+
"Draw3D": "",
|
|
36
|
+
"FeatureForm": "Objectgegevens",
|
|
37
|
+
"FeatureSearch": "Zoeken op kenmerken",
|
|
38
|
+
"GeometryDigitizer": "Geometry digitizer",
|
|
39
|
+
"IdentifyPoint": "",
|
|
40
|
+
"IdentifyRegion": "Data opvragen",
|
|
41
|
+
"LayerCatalog": "Lagencatalogus",
|
|
42
|
+
"Login": "Inloggen",
|
|
43
|
+
"Logout": "Uitloggen",
|
|
44
|
+
"MapLegend": "Legenda",
|
|
45
|
+
"Measure": "Meten",
|
|
46
|
+
"Measure3D": "",
|
|
47
|
+
"MeasureLineString": "lengte meten",
|
|
48
|
+
"MeasurePolygon": "Oppervlakte meten",
|
|
49
|
+
"NewsPopup": "",
|
|
50
|
+
"Panoramax": "",
|
|
51
|
+
"Portal": "Portal",
|
|
52
|
+
"PrintScreen3D": "",
|
|
53
|
+
"Redlining": "Redlining",
|
|
54
|
+
"Routing": "Routing",
|
|
55
|
+
"Tools": "Tools",
|
|
56
|
+
"TimeManager": "Tijd Manager",
|
|
57
|
+
"View3D": ""
|
|
58
|
+
},
|
|
59
|
+
"menulabel": "Kaartselectie & Tools"
|
|
60
|
+
},
|
|
61
|
+
"attribtable": {
|
|
62
|
+
"addfeature": "Object toevoegen",
|
|
63
|
+
"commit": "Bevestigen gewijzigde rij",
|
|
64
|
+
"csvexport": "CSV export",
|
|
65
|
+
"delete": "Verwijderen",
|
|
66
|
+
"deletefailed": "Kan één of meer objecten niet verwijderen",
|
|
67
|
+
"deletefeatures": "Verwijder geselecteerde objecten",
|
|
68
|
+
"deleting": "Verwijderen objecten...",
|
|
69
|
+
"discard": "Negeer gewijzigde rij",
|
|
70
|
+
"formeditmode": "Open het wijzigformulier voor geselecteerde object",
|
|
71
|
+
"geomnoadd": "Gebruik het wijzigformulier om nieuwe objecten aan deze laag toe te voegen",
|
|
72
|
+
"limittoextent": "Beperken tot kaartgebied",
|
|
73
|
+
"loadfailed": "Kan de object data niet laden",
|
|
74
|
+
"loading": "Laden...",
|
|
75
|
+
"nodelete": "Niet verwijderen",
|
|
76
|
+
"nogeomnoform": "Wijzigformulier is niet beschikbaar voor lagen zonder geometrie",
|
|
77
|
+
"pleasereload": "Druk op 'Herladen' om attributentabel te laden...",
|
|
78
|
+
"reload": "Herladen",
|
|
79
|
+
"selectlayer": "Selecteer laag...",
|
|
80
|
+
"title": "Attributentabel",
|
|
81
|
+
"zoomtoselection": "Inzoomen op geselecteerde objecten"
|
|
82
|
+
},
|
|
83
|
+
"bgswitcher": {
|
|
84
|
+
"nobg": "Geen achtergrond"
|
|
85
|
+
},
|
|
86
|
+
"bookmark": {
|
|
87
|
+
"add": "Nieuwe bladwijzer maken",
|
|
88
|
+
"addfailed": "Bladwijzer maken mislukt",
|
|
89
|
+
"description": "Geef beschrijving...",
|
|
90
|
+
"lastUpdate": "Laatst opgeslagen",
|
|
91
|
+
"manage": "Beheer bladwijzers",
|
|
92
|
+
"nobookmarks": "Geen bladwijzers",
|
|
93
|
+
"notloggedin": "Je moet ingelogd zijn om bladwijzers op te slaan",
|
|
94
|
+
"open": "Bladwijzer openen",
|
|
95
|
+
"openTab": "Bladwijzer in nieuw tabblad openen",
|
|
96
|
+
"remove": "Verwijder bladwijzer",
|
|
97
|
+
"removefailed": "Bladwijzer verwijderen mislukt",
|
|
98
|
+
"savefailed": "Bladwijzer bijwerken mislukt",
|
|
99
|
+
"update": "Bladwijzer bijwerken",
|
|
100
|
+
"zoomToExtent": "Zoom tot extent"
|
|
101
|
+
},
|
|
102
|
+
"bottombar": {
|
|
103
|
+
"mousepos_label": "Coördinaten",
|
|
104
|
+
"scale_label": "Schaal",
|
|
105
|
+
"terms_label": "Voorwaarden",
|
|
106
|
+
"viewertitle_label": ""
|
|
107
|
+
},
|
|
108
|
+
"compare3d": {
|
|
109
|
+
"clipplane": "",
|
|
110
|
+
"compare_objects": "",
|
|
111
|
+
"toggleall": ""
|
|
112
|
+
},
|
|
113
|
+
"cookiepopup": {
|
|
114
|
+
"accept": "",
|
|
115
|
+
"message": ""
|
|
116
|
+
},
|
|
117
|
+
"copybtn": {
|
|
118
|
+
"click_to_copy": "Klik om te kopiëren",
|
|
119
|
+
"copied": "Gekopieerd",
|
|
120
|
+
"copyfailed": "Kopiëren mislukt"
|
|
121
|
+
},
|
|
122
|
+
"cyclomedia": {
|
|
123
|
+
"clickonmap": "Klik op een opname op de kaart",
|
|
124
|
+
"initializing": "Initialiseren van Cyclomedia...",
|
|
125
|
+
"loaderror": "Initialiseren van Cyclomedia mislukt",
|
|
126
|
+
"loading": "Bezig met laden...",
|
|
127
|
+
"login": "Inloggen",
|
|
128
|
+
"scalehint": "De opnames zijn alleen zichtbaar op de kaart onder schaal 1:{0}.",
|
|
129
|
+
"title": "Cyclomedia Viewer"
|
|
130
|
+
},
|
|
131
|
+
"draw3d": {
|
|
132
|
+
"cone": "",
|
|
133
|
+
"cuboid": "",
|
|
134
|
+
"cylinder": "",
|
|
135
|
+
"delete": "",
|
|
136
|
+
"drawings": "",
|
|
137
|
+
"intersect": "",
|
|
138
|
+
"newgroupprompt": "",
|
|
139
|
+
"numericinput": "",
|
|
140
|
+
"pick": "",
|
|
141
|
+
"position": "",
|
|
142
|
+
"pyramid": "",
|
|
143
|
+
"rotate": "",
|
|
144
|
+
"rotation": "",
|
|
145
|
+
"scale": "",
|
|
146
|
+
"sphere": "",
|
|
147
|
+
"subtract": "",
|
|
148
|
+
"thescale": "",
|
|
149
|
+
"translate": "",
|
|
150
|
+
"undoBool": "",
|
|
151
|
+
"union": "",
|
|
152
|
+
"wedge": ""
|
|
153
|
+
},
|
|
154
|
+
"editing": {
|
|
155
|
+
"add": "Toevoegen",
|
|
156
|
+
"attrtable": "Tabel",
|
|
157
|
+
"canceldelete": "Niet verwijderen",
|
|
158
|
+
"clearpicture": "Wissen",
|
|
159
|
+
"commit": "Bevestigen",
|
|
160
|
+
"commitfailed": "Bevestigen mislukt",
|
|
161
|
+
"contraintviolation": "",
|
|
162
|
+
"create": "Toevoegen",
|
|
163
|
+
"delete": "Verwijderen",
|
|
164
|
+
"discard": "Negeren",
|
|
165
|
+
"draw": "Tekenen",
|
|
166
|
+
"feature": "Object",
|
|
167
|
+
"geomreadonly": "De geometrie bevat geen Z-waarden en is daarom read only.",
|
|
168
|
+
"invalidform": "Ongeldig formulier",
|
|
169
|
+
"maximize": "Maximaliseren",
|
|
170
|
+
"minimize": "Minimaliseren",
|
|
171
|
+
"noeditablelayers": "Geen bewerkbare lagen",
|
|
172
|
+
"paint": "Aanpassen",
|
|
173
|
+
"pick": "Selecteren",
|
|
174
|
+
"pickdrawfeature": "Dupliceer bestaande geometrie",
|
|
175
|
+
"reallydelete": "Verwijderen",
|
|
176
|
+
"relationcommitfailed": "Sommige relatiegegevens konden niet worden bevestigd. Controleer de pictogrammen voor details",
|
|
177
|
+
"select": "Selecteren",
|
|
178
|
+
"takepicture": "Foto maken",
|
|
179
|
+
"unsavedchanged": "Er zijn niet-opgeslagen wijzigingen. Wil je de pagina toch verlaten?"
|
|
180
|
+
},
|
|
181
|
+
"featureform": {
|
|
182
|
+
"feature": "Object",
|
|
183
|
+
"noresults": "Geen resultaten",
|
|
184
|
+
"querying": "Zoeken...",
|
|
185
|
+
"title": "Objectgegevens"
|
|
186
|
+
},
|
|
187
|
+
"featuresearch": {
|
|
188
|
+
"noresults": "Geen resultaat",
|
|
189
|
+
"query": "Zoeken",
|
|
190
|
+
"select": "Selecteer...",
|
|
191
|
+
"title": "Zoek object"
|
|
192
|
+
},
|
|
193
|
+
"fileselector": {
|
|
194
|
+
"files": "",
|
|
195
|
+
"placeholder": "Selecteer bestand..."
|
|
196
|
+
},
|
|
197
|
+
"geomdigitizer": {
|
|
198
|
+
"applink": "Toepassing",
|
|
199
|
+
"bufferlayername": "Digitaliseringsbuffer",
|
|
200
|
+
"chooselink": "Kiezen...",
|
|
201
|
+
"clear": "Laag wissen",
|
|
202
|
+
"identifypick": "Object selecteren",
|
|
203
|
+
"identifypickregion": "Objecten selecteren in regio",
|
|
204
|
+
"layername": "Digitalisering",
|
|
205
|
+
"line_buffer": "Lijn (naar buffer)",
|
|
206
|
+
"point_buffer": "Punt (naar buffer)",
|
|
207
|
+
"selfinter": "Eén of meer polygonen bevatten zelfdoorsnijdingen",
|
|
208
|
+
"send": "Verzenden",
|
|
209
|
+
"wait": "Bezig met laden..."
|
|
210
|
+
},
|
|
211
|
+
"heightprofile": {
|
|
212
|
+
"asl": "NAP",
|
|
213
|
+
"distance": "Afstand",
|
|
214
|
+
"drawnodes": "Nodes tekenen",
|
|
215
|
+
"error": "Hoogteprofiel berekenen mislukt",
|
|
216
|
+
"export": "Profiel exporteren",
|
|
217
|
+
"height": "Hoogte",
|
|
218
|
+
"loading": "Hoogteprofiel berekenen...",
|
|
219
|
+
"loadingimage": "Kaartafbeelding laden...",
|
|
220
|
+
"print": "Hoogteprofiel afdrukken",
|
|
221
|
+
"title": "Hoogteprofiel"
|
|
222
|
+
},
|
|
223
|
+
"hideobjects3d": {
|
|
224
|
+
"clickonmap": "",
|
|
225
|
+
"object": "",
|
|
226
|
+
"restore": "",
|
|
227
|
+
"restoreall": ""
|
|
228
|
+
},
|
|
229
|
+
"identify": {
|
|
230
|
+
"aggregatedreport": "",
|
|
231
|
+
"clipboard": "Kopiëren naar klembord",
|
|
232
|
+
"download": "",
|
|
233
|
+
"export": "Exporteren",
|
|
234
|
+
"featureReport": "Rapport",
|
|
235
|
+
"featurecount": "",
|
|
236
|
+
"layerall": "",
|
|
237
|
+
"link": "Link",
|
|
238
|
+
"noattributes": "Geen attributen",
|
|
239
|
+
"noresults": "Geen informatie beschikbaar voor het aangewezen punt",
|
|
240
|
+
"querying": "Zoeken...",
|
|
241
|
+
"reportfail": "",
|
|
242
|
+
"selectlayer": "",
|
|
243
|
+
"title": "Objectgegevens"
|
|
244
|
+
},
|
|
245
|
+
"imageeditor": {
|
|
246
|
+
"confirmclose": "Sluiten zonder op te slaan?",
|
|
247
|
+
"title": "Image editor"
|
|
248
|
+
},
|
|
249
|
+
"importlayer": {
|
|
250
|
+
"addfailed": "Toevoegen van laag mislukt",
|
|
251
|
+
"addlayer": "Laag toevoegen",
|
|
252
|
+
"asgroup": "",
|
|
253
|
+
"connect": "Verbinden",
|
|
254
|
+
"filter": "Filteren...",
|
|
255
|
+
"loading": "Laden...",
|
|
256
|
+
"localfile": "Lokaal bestand",
|
|
257
|
+
"nofeatures": "Objecten konden niet geïmporteerd worden",
|
|
258
|
+
"noresults": "Geen resultaten of ongeldige URL",
|
|
259
|
+
"notgeopdf": "Het geselecteerde bestand lijkt geen GeoPDF te zijn.",
|
|
260
|
+
"shpreprojectionerror": "",
|
|
261
|
+
"supportedformats": "",
|
|
262
|
+
"unknownproj": "De geselecteerde GeoPDF gebruikt een onbekende projectie: {0}.",
|
|
263
|
+
"url": "URL",
|
|
264
|
+
"urlplaceholder": "Voer URL in voor WMS, WMTS, WFS..."
|
|
265
|
+
},
|
|
266
|
+
"infotool": {
|
|
267
|
+
"clickhelpPoint": "Klik op de te vragen locatie in de kaart...",
|
|
268
|
+
"clickhelpPolygon": "Teken een polygoon rond de te op te vragen objecten...",
|
|
269
|
+
"clickhelpRadius": "Stel een straal in en klik op een locatie om objecten rond het punt te identificeren...",
|
|
270
|
+
"radius": "Straal"
|
|
271
|
+
},
|
|
272
|
+
"layercatalog": {
|
|
273
|
+
"windowtitle": "Lagencatalogus"
|
|
274
|
+
},
|
|
275
|
+
"layerinfo": {
|
|
276
|
+
"abstract": "Abstract",
|
|
277
|
+
"attribution": "Auteursrecht",
|
|
278
|
+
"dataUrl": "Data URL",
|
|
279
|
+
"keywords": "Trefwoorden",
|
|
280
|
+
"legend": "Legenda",
|
|
281
|
+
"maxscale": "Max. weergaveschaal",
|
|
282
|
+
"metadataUrl": "Metadata URL",
|
|
283
|
+
"minscale": "Min. weergaveschaal",
|
|
284
|
+
"title": "Laaginformatie"
|
|
285
|
+
},
|
|
286
|
+
"layertree": {
|
|
287
|
+
"compare": "Vergelijk bovenste laag",
|
|
288
|
+
"deletealllayers": "Verwijder alle lagen",
|
|
289
|
+
"importlayer": "Importeer laag",
|
|
290
|
+
"maptip": "Toon kaarttips voor de laag",
|
|
291
|
+
"printlegend": "Print legenda",
|
|
292
|
+
"separator": "Scheider",
|
|
293
|
+
"separatortooltip": "Voeg scheider toe",
|
|
294
|
+
"transparency": "Transparantie",
|
|
295
|
+
"visiblefilter": "Filter onzichtbare lagen",
|
|
296
|
+
"zoomtolayer": "Zoom naar laag"
|
|
297
|
+
},
|
|
298
|
+
"layertree3d": {
|
|
299
|
+
"import": "",
|
|
300
|
+
"importobjects": "",
|
|
301
|
+
"layers": "",
|
|
302
|
+
"objects": "",
|
|
303
|
+
"supportedformats": "",
|
|
304
|
+
"zoomtoobject": ""
|
|
305
|
+
},
|
|
306
|
+
"linkfeatureform": {
|
|
307
|
+
"cancel": "Annuleren",
|
|
308
|
+
"close": "Sluiten",
|
|
309
|
+
"drawhint": "Teken object op de kaart...",
|
|
310
|
+
"pickhint": "Kies object op de kaart..."
|
|
311
|
+
},
|
|
312
|
+
"locate": {
|
|
313
|
+
"feetUnit": "feet",
|
|
314
|
+
"metersUnit": "meters",
|
|
315
|
+
"popup": "Je bevindt je binnen {distance} {unit} van dit punt",
|
|
316
|
+
"statustooltip": {
|
|
317
|
+
"DISABLED": "Positie: uitgeschakeld",
|
|
318
|
+
"ENABLED": "Positie: ingeschakeld",
|
|
319
|
+
"FOLLOWING": "Positie: volgen",
|
|
320
|
+
"LOCATING": "Positie: lokaliseren...",
|
|
321
|
+
"PERMISSION_DENIED": "Positie: toestemming geweigerd"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"map": {
|
|
325
|
+
"loading": "Laden...",
|
|
326
|
+
"resetrotation": "Rotatie resetten"
|
|
327
|
+
},
|
|
328
|
+
"map3d": {
|
|
329
|
+
"syncview": "",
|
|
330
|
+
"terrain": "",
|
|
331
|
+
"title": ""
|
|
332
|
+
},
|
|
333
|
+
"mapexport": {
|
|
334
|
+
"configuration": "Configuratie",
|
|
335
|
+
"format": "Format",
|
|
336
|
+
"resolution": "Resolutie",
|
|
337
|
+
"scale": "Schaal",
|
|
338
|
+
"size": "Afmeting",
|
|
339
|
+
"submit": "Export",
|
|
340
|
+
"usersize": "Selecteer op kaart...",
|
|
341
|
+
"wait": "Even geduld a.u.b...."
|
|
342
|
+
},
|
|
343
|
+
"mapfilter": {
|
|
344
|
+
"addcustomfilter": "Aangepast filter toevoegen",
|
|
345
|
+
"brokenrendering": "Kaartweergave kan verstoord zijn door een ongeldige filterexpressie",
|
|
346
|
+
"cancel": "Annuleren",
|
|
347
|
+
"geomfilter": "Geometriefilter",
|
|
348
|
+
"hidefiltergeom": "Verberg filtergeometrie",
|
|
349
|
+
"invalidfilter": "Ongeldige filterexpressie",
|
|
350
|
+
"save": "Opslaan",
|
|
351
|
+
"select": "Selecteren...",
|
|
352
|
+
"selectlayer": "Laag selecteren",
|
|
353
|
+
"timefilter": "Tijd",
|
|
354
|
+
"timefrom": "Van",
|
|
355
|
+
"timeto": "Tot"
|
|
356
|
+
},
|
|
357
|
+
"mapinfotooltip": {
|
|
358
|
+
"elevation": "Hoogte",
|
|
359
|
+
"title": "Positie"
|
|
360
|
+
},
|
|
361
|
+
"maplegend": {
|
|
362
|
+
"bboxdependent": "Legenda afhankelijk van kaartextent",
|
|
363
|
+
"onlyvisible": "Alleen zichtbare lagen",
|
|
364
|
+
"scaledependent": "Legenda afhankelijk van kaartschaal",
|
|
365
|
+
"windowtitle": "Legenda"
|
|
366
|
+
},
|
|
367
|
+
"maplight3d": {
|
|
368
|
+
"ambientLightIntensity": "",
|
|
369
|
+
"animationstep": "",
|
|
370
|
+
"date": "",
|
|
371
|
+
"dayspersec": "",
|
|
372
|
+
"directionalLightIntensity": "",
|
|
373
|
+
"helpersVisible": "",
|
|
374
|
+
"minspersec": "",
|
|
375
|
+
"normalBias": "",
|
|
376
|
+
"shadowBias": "",
|
|
377
|
+
"shadowMapSize": "",
|
|
378
|
+
"shadowType": "",
|
|
379
|
+
"shadowVolumeFar": "",
|
|
380
|
+
"shadowVolumeNear": "",
|
|
381
|
+
"shadowintensity": "",
|
|
382
|
+
"shadows": "",
|
|
383
|
+
"showadvanced": "",
|
|
384
|
+
"time": "",
|
|
385
|
+
"zFactor": ""
|
|
386
|
+
},
|
|
387
|
+
"measureComponent": {
|
|
388
|
+
"absolute": "",
|
|
389
|
+
"areaLabel": "Oppervlakte",
|
|
390
|
+
"bearingLabel": "Richting",
|
|
391
|
+
"ground": "",
|
|
392
|
+
"imperial": "Imperiaal",
|
|
393
|
+
"lengthLabel": "Lengte",
|
|
394
|
+
"metric": "Metrisch",
|
|
395
|
+
"pointLabel": "Positie"
|
|
396
|
+
},
|
|
397
|
+
"misc": {
|
|
398
|
+
"ctrlclickhint": "Openen met Ctrl+klik"
|
|
399
|
+
},
|
|
400
|
+
"navbar": {
|
|
401
|
+
"perpage": "Per pagina"
|
|
402
|
+
},
|
|
403
|
+
"newspopup": {
|
|
404
|
+
"dialogclose": "Sluiten",
|
|
405
|
+
"dontshowagain": "Niet meer tonen",
|
|
406
|
+
"title": "Nieuws"
|
|
407
|
+
},
|
|
408
|
+
"numericinput": {
|
|
409
|
+
"angle": "Hoek",
|
|
410
|
+
"featureunsupported": "Numerieke invoer niet beschikbaar voor deze geometrie",
|
|
411
|
+
"height": "Hoogte",
|
|
412
|
+
"nofeature": "Geen actieve object",
|
|
413
|
+
"side": "Zijde",
|
|
414
|
+
"width": "Breedte",
|
|
415
|
+
"windowtitle": "Numerieke invoer"
|
|
416
|
+
},
|
|
417
|
+
"panoramax": {
|
|
418
|
+
"notfound": "",
|
|
419
|
+
"title": ""
|
|
420
|
+
},
|
|
421
|
+
"pickfeature": {
|
|
422
|
+
"querying": "Bezig met opvragen..."
|
|
423
|
+
},
|
|
424
|
+
"portal": {
|
|
425
|
+
"filter": "Filter kaarten...",
|
|
426
|
+
"menulabel": "Menu"
|
|
427
|
+
},
|
|
428
|
+
"print": {
|
|
429
|
+
"atlasfeature": "Atlasobject",
|
|
430
|
+
"download": "",
|
|
431
|
+
"download_as_onepdf": "",
|
|
432
|
+
"download_as_onezip": "",
|
|
433
|
+
"download_as_single": "",
|
|
434
|
+
"format": "Format",
|
|
435
|
+
"grid": "Raster",
|
|
436
|
+
"layout": "Indeling",
|
|
437
|
+
"legend": "Legenda",
|
|
438
|
+
"maximize": "Maximaliseren",
|
|
439
|
+
"minimize": "Minimaliseren",
|
|
440
|
+
"nolayouts": "De geselecteerde kaart ondersteunt geen afdrukken",
|
|
441
|
+
"notheme": "Geen kaart geselecteerd",
|
|
442
|
+
"output": "Print resultaat",
|
|
443
|
+
"overlap": "",
|
|
444
|
+
"pickatlasfeature": "Kies in kaartlaag {0}...",
|
|
445
|
+
"resolution": "Resolutie",
|
|
446
|
+
"rotation": "Rotatie",
|
|
447
|
+
"save": "",
|
|
448
|
+
"scale": "Schaal",
|
|
449
|
+
"series": "",
|
|
450
|
+
"submit": "Print",
|
|
451
|
+
"wait": "Even geduld a.u.b...."
|
|
452
|
+
},
|
|
453
|
+
"qtdesignerform": {
|
|
454
|
+
"loading": "Formulier laden..."
|
|
455
|
+
},
|
|
456
|
+
"redlining": {
|
|
457
|
+
"border": "Rand",
|
|
458
|
+
"buffer": "Buffer",
|
|
459
|
+
"buffercompute": "Berekenen",
|
|
460
|
+
"bufferdistance": "Afstand",
|
|
461
|
+
"bufferlayer": "Bestemming",
|
|
462
|
+
"bufferlayername": "Laag",
|
|
463
|
+
"bufferselectfeature": "Selecteer object om te bufferen...",
|
|
464
|
+
"circle": "Cirkel",
|
|
465
|
+
"delete": "Verwijderen",
|
|
466
|
+
"draw": "Tekenen",
|
|
467
|
+
"edit": "Bewerken",
|
|
468
|
+
"ellipse": "Ellips",
|
|
469
|
+
"export": "",
|
|
470
|
+
"freehand": "Uit de hand tekenen",
|
|
471
|
+
"label": "Label",
|
|
472
|
+
"layer": "Laag",
|
|
473
|
+
"layertitle": "Laag",
|
|
474
|
+
"line": "Lijn",
|
|
475
|
+
"markers": "Markeringen",
|
|
476
|
+
"measurements": "Metingen tonen",
|
|
477
|
+
"numericinput": "Numeriek invoerpaneel tonen",
|
|
478
|
+
"pick": "Selecteren",
|
|
479
|
+
"point": "Punt",
|
|
480
|
+
"polygon": "Polygoon",
|
|
481
|
+
"rectangle": "Rechthoek",
|
|
482
|
+
"size": "Afmeting",
|
|
483
|
+
"square": "",
|
|
484
|
+
"text": "Tekst",
|
|
485
|
+
"transform": "Transformeer",
|
|
486
|
+
"width": "Breedte"
|
|
487
|
+
},
|
|
488
|
+
"reports": {
|
|
489
|
+
"all": "",
|
|
490
|
+
"download": "",
|
|
491
|
+
"pick": "",
|
|
492
|
+
"region": "",
|
|
493
|
+
"selectlayer": ""
|
|
494
|
+
},
|
|
495
|
+
"routing": {
|
|
496
|
+
"add": "Punt toevoegen",
|
|
497
|
+
"addviapoint": "Via hier",
|
|
498
|
+
"arriveat": "Aankomen om",
|
|
499
|
+
"clear": "Wissen",
|
|
500
|
+
"computefailed": "Berekening mislukt",
|
|
501
|
+
"computing": "Bezig met berekenen...",
|
|
502
|
+
"excludepolygons": "Gebieden uitsluiten",
|
|
503
|
+
"export": "Exporteren",
|
|
504
|
+
"fastest": "Snelste",
|
|
505
|
+
"fromhere": "Vanaf hier",
|
|
506
|
+
"importerror": "Import mislukt. De inhoud van het bestand moet een GeoJSON FeatureCollection zijn van puntobjecten",
|
|
507
|
+
"importhint": "Bestand met een GeoJSON FeatureCollection van puntobjecten",
|
|
508
|
+
"importpoints": "Importeren",
|
|
509
|
+
"iso_intervals": "Intervallen",
|
|
510
|
+
"iso_mode": "Modus",
|
|
511
|
+
"iso_mode_distance": "Afstand",
|
|
512
|
+
"iso_mode_time": "Tijd",
|
|
513
|
+
"isocenter": "Centrum",
|
|
514
|
+
"isoextracenter": "Extra centrum",
|
|
515
|
+
"leaveat": "Vertrekken om",
|
|
516
|
+
"leavenow": "Nu vertrekken",
|
|
517
|
+
"maxspeed": "Max. snelheid",
|
|
518
|
+
"method": "Methode",
|
|
519
|
+
"mode_auto": "Auto",
|
|
520
|
+
"mode_bicycle": "Fiets",
|
|
521
|
+
"mode_heavyvehicle": "Zwaar voertuig",
|
|
522
|
+
"mode_transit": "Openbaar vervoer",
|
|
523
|
+
"mode_walking": "Lopen",
|
|
524
|
+
"optimized_route": "Geoptimaliseerde route",
|
|
525
|
+
"reachability": "Bereikbaarheid",
|
|
526
|
+
"roundtrip": "Rondrit",
|
|
527
|
+
"route": "Route",
|
|
528
|
+
"shortest": "Kortste",
|
|
529
|
+
"tohere": "Naar hier",
|
|
530
|
+
"useferries": "Gebruik veerboten",
|
|
531
|
+
"usehighways": "Gebruik snelwegen",
|
|
532
|
+
"usetollways": "Gebruik tolwegen",
|
|
533
|
+
"windowtitle": "Routering"
|
|
534
|
+
},
|
|
535
|
+
"scratchdrawing": {
|
|
536
|
+
"finish": "Voltooien"
|
|
537
|
+
},
|
|
538
|
+
"search": {
|
|
539
|
+
"all": "Alle",
|
|
540
|
+
"circleradius": "Straal van de cirkel",
|
|
541
|
+
"clearfilter": "Wissen",
|
|
542
|
+
"existinglayer": "Kaartlaag bestaat al",
|
|
543
|
+
"filter": "Filteren",
|
|
544
|
+
"layers": "",
|
|
545
|
+
"limittoarea": "Beperken tot gebied",
|
|
546
|
+
"more": "Meer...",
|
|
547
|
+
"nodescription": "",
|
|
548
|
+
"none": "",
|
|
549
|
+
"noresults": "Geen resultaten",
|
|
550
|
+
"placeholder": "",
|
|
551
|
+
"places": "",
|
|
552
|
+
"providerselection": "Zoek providers",
|
|
553
|
+
"recent": "",
|
|
554
|
+
"search": "Zoeken",
|
|
555
|
+
"themelayers": "Kaartlagen",
|
|
556
|
+
"themes": "Kaarten",
|
|
557
|
+
"unknownmore": ""
|
|
558
|
+
},
|
|
559
|
+
"serviceinfo": {
|
|
560
|
+
"abstract": "Samenvatting",
|
|
561
|
+
"contactEmail": "E-mail",
|
|
562
|
+
"contactOrganization": "Organisatie",
|
|
563
|
+
"contactPerson": "Contactpersoon",
|
|
564
|
+
"contactPhone": "Telefoon",
|
|
565
|
+
"contactPosition": "Functie",
|
|
566
|
+
"keywords": "Trefwoorden",
|
|
567
|
+
"onlineResource": "Online bron",
|
|
568
|
+
"title": "Kaart informatie"
|
|
569
|
+
},
|
|
570
|
+
"settings": {
|
|
571
|
+
"bookmarks": "Bookmarks",
|
|
572
|
+
"colorscheme": "Kleurenschema",
|
|
573
|
+
"confirmlang": "De applicatie wordt opnieuw geladen om de taal te wijzigen. Doorgaan?",
|
|
574
|
+
"default": "Default",
|
|
575
|
+
"defaulttheme": "Default kaart",
|
|
576
|
+
"defaultthemefailed": "Instellen van de default kaart niet gelukt: {0}",
|
|
577
|
+
"language": "Taal",
|
|
578
|
+
"systemlang": "Systeemtaal",
|
|
579
|
+
"themes": "Kaarten"
|
|
580
|
+
},
|
|
581
|
+
"share": {
|
|
582
|
+
"QRCodeLinkTitle": "QR-code",
|
|
583
|
+
"directLinkTitle": "Via een directe link",
|
|
584
|
+
"expires": "Deze permalink is geldig tot {0}.",
|
|
585
|
+
"norestriction": "",
|
|
586
|
+
"refresh": "Genereer permalink",
|
|
587
|
+
"restricttogroup": "",
|
|
588
|
+
"shareTitle": "QWC2",
|
|
589
|
+
"showpin": "Pin weergeven",
|
|
590
|
+
"socialIntro": "Op je favoriete sociale netwerk"
|
|
591
|
+
},
|
|
592
|
+
"snapping": {
|
|
593
|
+
"edge": "Naar randen snappen",
|
|
594
|
+
"loading": "Snapping-geometrieën laden...",
|
|
595
|
+
"snappingenabled": "Snapping ingeschakeld",
|
|
596
|
+
"vertex": "Naar hoekpunten snappen"
|
|
597
|
+
},
|
|
598
|
+
"themelayerslist": {
|
|
599
|
+
"addlayer": "Laag toevoegen",
|
|
600
|
+
"addlayerstotheme": "Lagen toevoegen aan huidige kaart",
|
|
601
|
+
"addselectedlayers": "Geselecteerde la(a)g(en) toevoegen",
|
|
602
|
+
"existinglayers": ""
|
|
603
|
+
},
|
|
604
|
+
"themeswitcher": {
|
|
605
|
+
"addlayerstotheme": "Voeg lagen toe aan huidige kaart",
|
|
606
|
+
"addtotheme": "Toevoegen aan huidig kaart",
|
|
607
|
+
"changedefaulttheme": "Deze kaart selecteren als standaardkaart",
|
|
608
|
+
"confirmswitch": "Niet-thematische lagen gaan verloren bij het wisselen van kaart. Doorgaan?",
|
|
609
|
+
"filter": "Filteren...",
|
|
610
|
+
"match": {
|
|
611
|
+
"abstract": "Samenvatting",
|
|
612
|
+
"keywords": "Trefwoorden",
|
|
613
|
+
"title": "Titel"
|
|
614
|
+
},
|
|
615
|
+
"openintab": "Openen in tabblad",
|
|
616
|
+
"restrictedthemeinfo": "Je hebt geen toestemming om de kaart te bekijken of bent niet ingelogd"
|
|
617
|
+
},
|
|
618
|
+
"timemanager": {
|
|
619
|
+
"animationinterval": "Animatie-interval",
|
|
620
|
+
"classify": "Classificatie attribuut",
|
|
621
|
+
"classifynone": "Geen",
|
|
622
|
+
"displayfeatures": "Tijdlijn met objecten",
|
|
623
|
+
"displaylayers": "Tijdlijn met lagen",
|
|
624
|
+
"displayminimal": "Alleen tijdlijn",
|
|
625
|
+
"edit": "Edit",
|
|
626
|
+
"endtime": "Einde",
|
|
627
|
+
"filterwarning": "Kaart filters zijn actief",
|
|
628
|
+
"future": "Toekomst",
|
|
629
|
+
"group": "Groeperingsattribuut",
|
|
630
|
+
"groupnone": "Geen",
|
|
631
|
+
"home": "Reset tijdlijn",
|
|
632
|
+
"loading": "Laden...",
|
|
633
|
+
"loop": "Herhalen",
|
|
634
|
+
"markers": "Markeringen",
|
|
635
|
+
"notemporaldata": "Er zijn geen tijdsgerelateerde lagen zichtbaar op de kaart.",
|
|
636
|
+
"now": "Nu",
|
|
637
|
+
"past": "Verleden",
|
|
638
|
+
"play": "Afspelen",
|
|
639
|
+
"playrev": "Achteruit afspelen",
|
|
640
|
+
"rewind": "Terugspoelen",
|
|
641
|
+
"starttime": "Start",
|
|
642
|
+
"stepback": "Stap terug",
|
|
643
|
+
"stepfwd": "Stap vooruit",
|
|
644
|
+
"stepsize": "Stapgrootte",
|
|
645
|
+
"stop": "Stoppen",
|
|
646
|
+
"timeline": "Tijdlijn",
|
|
647
|
+
"timeline_fixed": "Vast",
|
|
648
|
+
"timeline_infinite": "Oneindig",
|
|
649
|
+
"timelinedisplay": "Weergave",
|
|
650
|
+
"timelinescale": "Tijdschaal (niet-lineariteit)",
|
|
651
|
+
"title": "Tijdmanager",
|
|
652
|
+
"toggle": "Tijdelijke navigatie",
|
|
653
|
+
"unit": {
|
|
654
|
+
"century": "eeuwen",
|
|
655
|
+
"days": "dagen",
|
|
656
|
+
"decade": "decennia",
|
|
657
|
+
"hours": "uren",
|
|
658
|
+
"milliseconds": "milliseconden",
|
|
659
|
+
"minutes": "minuten",
|
|
660
|
+
"months": "maanden",
|
|
661
|
+
"seconds": "seconden",
|
|
662
|
+
"years": "jaren"
|
|
663
|
+
},
|
|
664
|
+
"zoomin": "Inzoomen",
|
|
665
|
+
"zoomout": "Uitzoomen"
|
|
666
|
+
},
|
|
667
|
+
"tooltip": {
|
|
668
|
+
"background": "Wissel achtergrond",
|
|
669
|
+
"fullscreendisable": "Schakel volledig scherm uit",
|
|
670
|
+
"fullscreenenable": "Schakel volledig scherm in",
|
|
671
|
+
"home": "Toon volledige kaart",
|
|
672
|
+
"zoomin": "Inzoomen",
|
|
673
|
+
"zoomout": "Uitzoomen"
|
|
674
|
+
},
|
|
675
|
+
"valuetool": {
|
|
676
|
+
"all": "",
|
|
677
|
+
"allbands": "",
|
|
678
|
+
"alllayers": "",
|
|
679
|
+
"bands": "",
|
|
680
|
+
"graph": "",
|
|
681
|
+
"layer": "",
|
|
682
|
+
"nodata": "",
|
|
683
|
+
"options": "",
|
|
684
|
+
"selectedbands": "",
|
|
685
|
+
"selectedlayers": "",
|
|
686
|
+
"selectlayersbands": "",
|
|
687
|
+
"showbands": "",
|
|
688
|
+
"showlayers": "",
|
|
689
|
+
"table": "",
|
|
690
|
+
"title": "",
|
|
691
|
+
"visiblelayers": ""
|
|
692
|
+
},
|
|
693
|
+
"vectorlayerpicker": {
|
|
694
|
+
"none": "Geen",
|
|
695
|
+
"prompt": "Voer de naam van de laag in"
|
|
696
|
+
},
|
|
697
|
+
"window": {
|
|
698
|
+
"close": "Sluiten",
|
|
699
|
+
"detach": "",
|
|
700
|
+
"dock": "Dock",
|
|
701
|
+
"embed": "",
|
|
702
|
+
"maximize": "Maximaliseren",
|
|
703
|
+
"minimize": "Minimaliseren",
|
|
704
|
+
"undock": "Losmaken",
|
|
705
|
+
"unmaximize": "Herstellen",
|
|
706
|
+
"unminimize": "Minimaliseer niet"
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
}
|