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,67 @@
|
|
|
1
|
+
div.map3d-bottombar {
|
|
2
|
+
position: absolute;
|
|
3
|
+
left: 0;
|
|
4
|
+
right: 0;
|
|
5
|
+
bottom: 0;
|
|
6
|
+
height: 3em;
|
|
7
|
+
z-index: 100;
|
|
8
|
+
color: var(--panel-text-color);
|
|
9
|
+
background-color: var(--panel-bg-color);
|
|
10
|
+
box-shadow: 0 -2px 4px rgba(136, 136, 136, 0.5);
|
|
11
|
+
backdrop-filter: blur(3px);
|
|
12
|
+
font-size: 75%;
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
div.map3d-bottombar-progress {
|
|
18
|
+
margin: 0.25em;
|
|
19
|
+
position: relative;
|
|
20
|
+
flex: 0 0 10em;
|
|
21
|
+
height: 2em;
|
|
22
|
+
border: 1px solid var(--border-color);
|
|
23
|
+
background-color: var(--border-color);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
div.map3d-bottombar-spacer {
|
|
27
|
+
flex: 1 1 auto;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
div.map3d-bottombar-progressbar {
|
|
31
|
+
position: absolute;
|
|
32
|
+
left: 0;
|
|
33
|
+
bottom: 0;
|
|
34
|
+
top: 0;
|
|
35
|
+
background-color: var(--color-active);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
div.map3d-bottombar-progress-label {
|
|
39
|
+
position: absolute;
|
|
40
|
+
left: 0;
|
|
41
|
+
right: 0;
|
|
42
|
+
bottom: 0;
|
|
43
|
+
top: 0;
|
|
44
|
+
line-height: 2em;
|
|
45
|
+
text-align: center;
|
|
46
|
+
color: white;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
div.map3d-bottombar-position {
|
|
50
|
+
margin-left: 0.5em;
|
|
51
|
+
border: 1px solid var(--border-color);
|
|
52
|
+
padding: 0.25em;
|
|
53
|
+
background-color: var(--input-bg-color);
|
|
54
|
+
flex: 0 0 15em;
|
|
55
|
+
text-align: center;
|
|
56
|
+
height: 2em;
|
|
57
|
+
cursor: text;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
div.map3d-bottombar-projection {
|
|
61
|
+
border-color: var(--border-color);
|
|
62
|
+
border-style: solid;
|
|
63
|
+
border-width: 1px 1px 1px 0;
|
|
64
|
+
background-color: var(--input-bg-color);
|
|
65
|
+
padding: 0.25em 0.5em;
|
|
66
|
+
height: 2em;
|
|
67
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
#Compare3D div.compare3d-title {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
padding: 0 0.125em;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
#Compare3D div.compare3d-title > span.icon {
|
|
8
|
+
margin-right: 0.5em;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
#Compare3D div.compare3d-objects {
|
|
12
|
+
display: flex;
|
|
13
|
+
background-color: var(--list-bg-color);
|
|
14
|
+
margin: 0.25em;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
#Compare3D div.compare3d-section {
|
|
18
|
+
flex: 1 1 auto;
|
|
19
|
+
border: 1px solid var(--border-color);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#Compare3D div.compare3d-section:first-child {
|
|
23
|
+
border-right: 1px solid var(--border-color);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
#Compare3D div.compare3d-section:last-child {
|
|
27
|
+
border-left: 1px solid var(--border-color);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
#Compare3D div.compare3d-item {
|
|
31
|
+
display: flex;
|
|
32
|
+
align-items: center;
|
|
33
|
+
padding: 0.25em;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
#Compare3D div.compare3d-item-toggleall {
|
|
37
|
+
border-bottom: 1px solid var(--border-color);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
#Compare3D span.compare3d-item-checkbox {
|
|
41
|
+
margin-right: 0.5em;
|
|
42
|
+
flex: 0 0 auto;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
#Compare3D div.compare3d-title {
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
margin: 0.25em;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
#Compare3D table.compare3d-planeconfig {
|
|
51
|
+
width: 100%;
|
|
52
|
+
margin-bottom: 0.25em;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
#Compare3D table.compare3d-planeconfig td {
|
|
56
|
+
padding: 0 0.25em 0 0.5em;
|
|
57
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
#HideObjects3D div.hideobjects3d-body {
|
|
2
|
+
padding: 0.25em;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
#HideObjects3D div.hideobjects3d-list {
|
|
6
|
+
border: 1px solid var(--border-color);
|
|
7
|
+
background-color: var(--list-bg-color);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
#HideObjects3D div.hideobjects3d-list > div {
|
|
11
|
+
padding: 0.25em;
|
|
12
|
+
display: flex;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#HideObjects3D div.hideobjects3d-list > div:hover {
|
|
16
|
+
background-color: var(--list-item-bg-color-hover);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
#HideObjects3D div.hideobjects3d-list > div > span:first-child {
|
|
20
|
+
flex: 1 1 auto;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
#HideObjects3D div.hideobjects3d-restorebutton {
|
|
24
|
+
margin-top:-1px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
#HideObjects3D div.hideobjects3d-restorebutton > button {
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
#LayerTree3D div.layertree3d-section {
|
|
2
|
+
padding: 0.25em 0 0 0.25em;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
#LayerTree3D div.layertree3d-item-container {
|
|
6
|
+
padding: 0.25em 0.25em 0.25em 0.5em;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#LayerTree3D div.layertree3d-item {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
height: 1.75em;
|
|
13
|
+
margin-left: 0.25em;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#LayerTree3D span.layertree3d-item-checkbox {
|
|
17
|
+
margin-right: 0.5em;
|
|
18
|
+
flex: 0 0 auto;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#LayerTree3D div.layertree3d-item-disabled > span.layertree3d-item-title {
|
|
22
|
+
color: var(--text-color-disabled);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
#LayerTree3D span.layertree3d-item-title {
|
|
26
|
+
flex: 1 1 auto;
|
|
27
|
+
white-space: nowrap;
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
text-overflow: ellipsis;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
#LayerTree3D span.layertree3d-item-transparency {
|
|
33
|
+
flex: 0 0 5em;
|
|
34
|
+
margin: 0 0.5em;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
#LayerTree3D input.layertree3d-item-transparency-slider {
|
|
38
|
+
width: 100%;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
#LayerTree3D div.layertree3d-section {
|
|
42
|
+
font-weight: bold;
|
|
43
|
+
margin-left: 0.25em;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
#LayerTree3D span.layertree3d-item-remove {
|
|
47
|
+
text-align: center;
|
|
48
|
+
width: 1.75em;
|
|
49
|
+
flex: 0 0 auto;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
#LayerTree3D span.layertree3d-item-remove:not(.icon_disabled):hover {
|
|
53
|
+
color: red;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
#LayerTree3D span.layertree3d-item-menubutton {
|
|
57
|
+
text-align: center;
|
|
58
|
+
width: 1.75em;
|
|
59
|
+
flex: 0 0 auto;
|
|
60
|
+
height: 100%;
|
|
61
|
+
display: flex;
|
|
62
|
+
justify-content: center;
|
|
63
|
+
align-items: center;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
#LayerTree3D span.layertree3d-item-menubutton-active {
|
|
67
|
+
background-color: var(--color-active);
|
|
68
|
+
color: white;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
#LayerTree3D div.layertree3d-item-optionsmenu {
|
|
72
|
+
border: 1px solid var(--border-color);
|
|
73
|
+
background-color: var(--input-bg-color);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
#LayerTree3D div.layertree3d-item-optionsmenu-row {
|
|
77
|
+
padding: 0.25em;
|
|
78
|
+
display: flex;
|
|
79
|
+
align-items: center;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
#LayerTree3D div.layertree3d-item-optionsmenu-row > span.icon {
|
|
83
|
+
flex: 0 0 auto;
|
|
84
|
+
width: 1.25em;
|
|
85
|
+
margin-right: 0.25em;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
#LayerTree3D input.layertree3d-item-transparency-slider {
|
|
89
|
+
flex: 1 1 auto;
|
|
90
|
+
font-size: small;
|
|
91
|
+
min-width: 0;
|
|
92
|
+
max-width: none;
|
|
93
|
+
width: 1000em; /* exagerated value */
|
|
94
|
+
margin: 0 0.25em;
|
|
95
|
+
height: 1.25em;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
#LayerTree3D div.layertree3d-item-optionsmenu-row > div.number-input {
|
|
99
|
+
flex: 1 1 auto;
|
|
100
|
+
margin-left: 0.25em;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
#LayerTree3D div.layertree3d-option {
|
|
104
|
+
flex: 0 0 auto;
|
|
105
|
+
height: 2.25em;
|
|
106
|
+
padding: 0.25em 0.5em 0.25em 0.5em;
|
|
107
|
+
border-top: 1px solid var(--border-color);
|
|
108
|
+
display: flex;
|
|
109
|
+
align-items: center;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
#LayerTree3D div.layertree3d-option > span.icon {
|
|
113
|
+
margin-right: 0.5em;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
#LayerTree3D div.layertree3d-option > span {
|
|
117
|
+
cursor: pointer;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
#LayerTree3D div.layertree3d-import-widget > div {
|
|
121
|
+
padding: 0 0.5em 0.5em 0.5em;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
#LayerTree3D div.layertree3d-import-widget > div > * {
|
|
125
|
+
width: 100%;
|
|
126
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
div.map3d-body {
|
|
2
|
+
margin: -0.25em;
|
|
3
|
+
height: calc(100% + 0.5em);
|
|
4
|
+
position: relative;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
div.map3d-titlebar {
|
|
8
|
+
flex: 0 0 3.25em;
|
|
9
|
+
display: flex;
|
|
10
|
+
align-items: center;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.map3d-titlebar > span:first-child {
|
|
14
|
+
flex: 1 1 auto;
|
|
15
|
+
padding: 0 0.5em;
|
|
16
|
+
font-weight: bold;
|
|
17
|
+
font-size: 150%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
div.map3d-titlebar > span.icon-remove {
|
|
21
|
+
font-size: 150%;
|
|
22
|
+
margin: 0 0.5em;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
div.map3d-map {
|
|
26
|
+
position: absolute;
|
|
27
|
+
left: 0;
|
|
28
|
+
top: 0;
|
|
29
|
+
right: 0;
|
|
30
|
+
bottom: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
div.map3d-inspector {
|
|
34
|
+
position: absolute;
|
|
35
|
+
z-index: 1000;
|
|
36
|
+
left: 0;
|
|
37
|
+
top: var(--topbar-height);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.map3d-inspector input {
|
|
41
|
+
color: black!important;
|
|
42
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
#MapLight3D div.maplight3d-body {
|
|
2
|
+
padding: 0.25em;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
#MapLight3D div.maplight3d-body > table {
|
|
6
|
+
width: 100%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#MapLight3D div.maplight3d-body > table td > input {
|
|
10
|
+
width: 100%;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
#MapLight3D td.maplight3d-advanced {
|
|
14
|
+
height: 2em;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
div.map3d-animation-slider {
|
|
18
|
+
display: flex;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.map3d-animation-slider > span.icon {
|
|
22
|
+
flex: 0 0 auto;
|
|
23
|
+
padding: 0.5em;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
div.map3d-animation-slider > div.maplight3d-slider {
|
|
27
|
+
padding: 0 0.25em;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
div.map3d-animation-slider > span.map3d-animation-settings-active {
|
|
31
|
+
background-color: var(--color-active);
|
|
32
|
+
color: white;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
div.maplight3d-animation-settings {
|
|
36
|
+
margin-top: -2px;
|
|
37
|
+
padding-left: 0.25em;
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
border: 1px solid var(--border-color);
|
|
41
|
+
background-color: var(--input-bg-color);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
div.maplight3d-animation-settings > div.number-input {
|
|
45
|
+
flex: 1 1 auto;
|
|
46
|
+
border: none;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
div.maplight3d-slider {
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-direction: column;
|
|
52
|
+
padding: 0 1em;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
div.maplight3d-slider > input {
|
|
56
|
+
margin-top: -0.5em;
|
|
57
|
+
margin-bottom: 0.5em;
|
|
58
|
+
width: 100%;
|
|
59
|
+
outline: none;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
div.maplight3d-slider-label {
|
|
63
|
+
position: relative;
|
|
64
|
+
pointer-events: none;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
div.maplight3d-slider-label > span {
|
|
68
|
+
position: absolute;
|
|
69
|
+
bottom: 0;
|
|
70
|
+
font-size: small;
|
|
71
|
+
transform: translateX(-50%);
|
|
72
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
div.map3d-nav-pan,
|
|
2
|
+
div.map3d-nav-rotate {
|
|
3
|
+
position: absolute;
|
|
4
|
+
right: 1em;
|
|
5
|
+
z-index: 1;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
flex-wrap: wrap;
|
|
10
|
+
width: 4em;
|
|
11
|
+
height: 4em;
|
|
12
|
+
border-radius: 2em;
|
|
13
|
+
color: var(--map-button-text-color);
|
|
14
|
+
background-color: var(--map-button-bg-color);
|
|
15
|
+
box-shadow: 0px 5px 10px rgba(136, 136, 136, 0.5);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
div.map3d-nav-pan > span,
|
|
19
|
+
div.map3d-nav-rotate > span {
|
|
20
|
+
flex: 0 0 1.25em;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
div.map3d-nav-pan {
|
|
24
|
+
top: 5.5em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
div.map3d-nav-pan > span.icon-home {
|
|
28
|
+
font-size: 120%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
div.map3d-nav-rotate {
|
|
32
|
+
top: 10.5em;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
div.map3d-firstperson-button {
|
|
36
|
+
position: absolute;
|
|
37
|
+
width: 2em;
|
|
38
|
+
height: 2em;
|
|
39
|
+
right: 2em;
|
|
40
|
+
top: 15.5em;
|
|
41
|
+
z-index: 1;
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
color: var(--map-button-text-color);
|
|
46
|
+
background-color: var(--map-button-bg-color);
|
|
47
|
+
box-shadow: 0px 5px 10px rgba(136, 136, 136, 0.5);
|
|
48
|
+
border-radius: 4px;
|
|
49
|
+
cursor: pointer;
|
|
50
|
+
transition: background-color 0.5s, color 0.5s;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
div.map3d-firstperson-button-active {
|
|
54
|
+
background-color: var(--map-button-text-color);
|
|
55
|
+
color: var(--map-button-bg-color);
|
|
56
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
div.mapexport3d-event-container {
|
|
2
|
+
z-index: 2;
|
|
3
|
+
position: absolute;
|
|
4
|
+
left: 0;
|
|
5
|
+
top: 0;
|
|
6
|
+
right: 0;
|
|
7
|
+
bottom: 0;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
div.mapexport3d-frame {
|
|
11
|
+
position: absolute;
|
|
12
|
+
box-shadow: rgba(0, 0, 0, 0.5) 0 0 0 30000px;
|
|
13
|
+
white-space: nowrap;
|
|
14
|
+
display: flex;
|
|
15
|
+
align-items: center;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
font-size: small;
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
user-select: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
span.mapexport3d-frame-label {
|
|
23
|
+
padding: 0.25em;
|
|
24
|
+
background: rgba(255, 255, 255, 0.5);
|
|
25
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
div.overview-map-3d {
|
|
2
|
+
position: absolute;
|
|
3
|
+
bottom: 0;
|
|
4
|
+
right: 0;
|
|
5
|
+
z-index: 101;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
div.overview-map-3d > button {
|
|
9
|
+
font-size: initial!important;
|
|
10
|
+
right: 0.25em;
|
|
11
|
+
bottom: 0.25em;
|
|
12
|
+
width: 1.375em;
|
|
13
|
+
height: 1.375em;
|
|
14
|
+
position: absolute;
|
|
15
|
+
color: var(--map-button-text-color)!important;
|
|
16
|
+
background-color: var(--map-button-bg-color)!important;
|
|
17
|
+
border: 0!important;
|
|
18
|
+
outline: 0;
|
|
19
|
+
z-index: 101;
|
|
20
|
+
border-radius: 2px;
|
|
21
|
+
font-weight: bold;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
div.overview-map-3d > div.ol-overviewmap-map-3d {
|
|
25
|
+
position: absolute;
|
|
26
|
+
right: 1px;
|
|
27
|
+
bottom: 1px;
|
|
28
|
+
width: 200px;
|
|
29
|
+
height: 200px;
|
|
30
|
+
background-color: white;
|
|
31
|
+
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
|
|
32
|
+
border: 1px solid var(--border-color);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
div.overview-map-3d.ol-collapsed > div.ol-overviewmap-map-3d {
|
|
36
|
+
display: none;
|
|
37
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
div.View3DSwitcher {
|
|
2
|
+
position: absolute;
|
|
3
|
+
height: 3em;
|
|
4
|
+
width: 3em;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
div.View3DSwitcher > button {
|
|
8
|
+
bottom: 0;
|
|
9
|
+
right: 0;
|
|
10
|
+
transition: right 0.25s;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.View3DSwitcher.view3d-switcher-expanded {
|
|
14
|
+
width: 11em;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
div.View3DSwitcher > button:nth-child(1) {
|
|
18
|
+
z-index: 4;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
div.View3DSwitcher.view3d-switcher-expanded > button:nth-child(2) {
|
|
22
|
+
right: 4em;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
div.View3DSwitcher.view3d-switcher-expanded > button:nth-child(3) {
|
|
26
|
+
right: 8em;
|
|
27
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _toConsumableArray(r){return _arrayWithoutHoles(r)||_iterableToArray(r)||_unsupportedIterableToArray(r)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _unsupportedIterableToArray(r,a){if(r){if("string"==typeof r)return _arrayLikeToArray(r,a);var t={}.toString.call(r).slice(8,-1);return"Object"===t&&r.constructor&&(t=r.constructor.name),"Map"===t||"Set"===t?Array.from(r):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?_arrayLikeToArray(r,a):void 0}}function _iterableToArray(r){if("undefined"!=typeof Symbol&&null!=r[Symbol.iterator]||null!=r["@@iterator"])return Array.from(r)}function _arrayWithoutHoles(r){if(Array.isArray(r))return _arrayLikeToArray(r)}function _arrayLikeToArray(r,a){(null==a||a>r.length)&&(a=r.length);for(var e=0,n=Array(a);e<a;e++)n[e]=r[e];return n}import{Float32BufferAttribute}from"three";var COLORS=[0,16711680,65280,255,16776960,16711935,65535,16777215,5592405,13421772];var Tiles3DStyle={getBatchColor:function getBatchColor(group,batchId){var _group$batchTable$get;var colorAttr=group.userData.batchColorAttr;if(!colorAttr){return 16777215}return(_group$batchTable$get=group.batchTable.getDataFromId(batchId)[colorAttr])!==null&&_group$batchTable$get!==void 0?_group$batchTable$get:COLORS[batchId%COLORS.length]},applyDeclarativeStyle:function applyDeclarativeStyle(group,tilesetConfig){group.userData.batchColorAttr=tilesetConfig.colorAttr;var batchColorCache={};var batchColor=function batchColor(batchId){if(!batchColorCache[batchId]){var color=Tiles3DStyle.getBatchColor(group,batchId);var r=(color>>16&255)/255;var g=(color>>8&255)/255;var b=(color&255)/255;batchColorCache[batchId]=[r,g,b]}return batchColorCache[batchId]};group.traverse(function(c){if(c.geometry){if(tilesetConfig.colorAttr){var batchidAttr=c.geometry.getAttribute("_batchid");var colors=[];batchidAttr.array.forEach(function(batchId){colors.push.apply(colors,_toConsumableArray(batchColor(batchId)))});c.geometry.setAttribute("color",new Float32BufferAttribute(colors,3));c.material.vertexColors=true}}})}};export default Tiles3DStyle;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},_typeof(o)}function _classCallCheck(a,n){if(!(a instanceof n))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,r){for(var t=0;t<r.length;t++){var o=r[t];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,_toPropertyKey(o.key),o)}}function _createClass(e,r,t){return r&&_defineProperties(e.prototype,r),t&&_defineProperties(e,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function _callSuper(t,o,e){return o=_getPrototypeOf(o),_possibleConstructorReturn(t,_isNativeReflectConstruct()?Reflect.construct(o,e||[],_getPrototypeOf(t).constructor):o.apply(t,e))}function _possibleConstructorReturn(t,e){if(e&&("object"==_typeof(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return _assertThisInitialized(t)}function _assertThisInitialized(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function _isNativeReflectConstruct(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(_isNativeReflectConstruct=function _isNativeReflectConstruct(){return!!t})()}function _getPrototypeOf(t){return _getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},_getPrototypeOf(t)}function _inherits(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&_setPrototypeOf(t,e)}function _setPrototypeOf(t,e){return _setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},_setPrototypeOf(t,e)}function _defineProperty(e,r,t){return(r=_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function _toPropertyKey(t){var i=_toPrimitive(t,"string");return"symbol"==_typeof(i)?i:i+""}function _toPrimitive(t,r){if("object"!=_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)}/**
|
|
2
|
+
* Copyright 2017-2024 Sourcepole AG
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the BSD-style license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/import React from"react";import PropTypes from"prop-types";import LocaleUtils from"../../utils/LocaleUtils";import CopyButton from"../widgets/CopyButton";import"./style/ShareLink.css";var ShareLink=/*#__PURE__*/function(_React$Component){function ShareLink(){_classCallCheck(this,ShareLink);return _callSuper(this,ShareLink,arguments)}_inherits(ShareLink,_React$Component);return _createClass(ShareLink,[{key:"render",value:function render(){return/*#__PURE__*/React.createElement("div",{className:"share-link"},/*#__PURE__*/React.createElement("h4",null,LocaleUtils.tr("share.directLinkTitle")),/*#__PURE__*/React.createElement("div",{className:"controlgroup share-link-frame"},/*#__PURE__*/React.createElement("input",{onFocus:function onFocus(ev){return ev.target.select()},readOnly:true,type:"text",value:this.props.shareUrl}),/*#__PURE__*/React.createElement(CopyButton,{buttonClass:"share-link-button",text:this.props.shareUrl,tooltipAlign:"right"})))}}])}(React.Component);_defineProperty(ShareLink,"propTypes",{shareUrl:PropTypes.string});export{ShareLink as default};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},_typeof(o)}function _classCallCheck(a,n){if(!(a instanceof n))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,r){for(var t=0;t<r.length;t++){var o=r[t];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,_toPropertyKey(o.key),o)}}function _createClass(e,r,t){return r&&_defineProperties(e.prototype,r),t&&_defineProperties(e,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function _callSuper(t,o,e){return o=_getPrototypeOf(o),_possibleConstructorReturn(t,_isNativeReflectConstruct()?Reflect.construct(o,e||[],_getPrototypeOf(t).constructor):o.apply(t,e))}function _possibleConstructorReturn(t,e){if(e&&("object"==_typeof(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return _assertThisInitialized(t)}function _assertThisInitialized(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function _isNativeReflectConstruct(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(_isNativeReflectConstruct=function _isNativeReflectConstruct(){return!!t})()}function _getPrototypeOf(t){return _getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},_getPrototypeOf(t)}function _inherits(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&_setPrototypeOf(t,e)}function _setPrototypeOf(t,e){return _setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},_setPrototypeOf(t,e)}function _defineProperty(e,r,t){return(r=_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function _toPropertyKey(t){var i=_toPrimitive(t,"string");return"symbol"==_typeof(i)?i:i+""}function _toPrimitive(t,r){if("object"!=_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)}/**
|
|
2
|
+
* Copyright 2016 GeoSolutions Sas
|
|
3
|
+
* Copyright 2016-2024 Sourcepole AG
|
|
4
|
+
* All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the BSD-style license found in the
|
|
7
|
+
* LICENSE file in the root directory of this source tree.
|
|
8
|
+
*/import React from"react";import PropTypes from"prop-types";import{QRCodeCanvas}from"qrcode.react";import LocaleUtils from"../../utils/LocaleUtils";import CopyButton from"../widgets/CopyButton";var ShareQRCode=/*#__PURE__*/function(_React$Component){function ShareQRCode(){var _this;_classCallCheck(this,ShareQRCode);for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++){args[_key]=arguments[_key]}_this=_callSuper(this,ShareQRCode,[].concat(args));_defineProperty(_this,"getClipboardData",function(callback){document.getElementById("qwc2-share-qr-canvas").toBlob(function(blob){return callback({"image/png":blob})})});return _this}_inherits(ShareQRCode,_React$Component);return _createClass(ShareQRCode,[{key:"render",value:function render(){var _navigator$clipboard;var canCopy=((_navigator$clipboard=navigator.clipboard)===null||_navigator$clipboard===void 0?void 0:_navigator$clipboard.write)!==undefined;return/*#__PURE__*/React.createElement("div",{className:"qr-code"},/*#__PURE__*/React.createElement("h4",null,LocaleUtils.tr("share.QRCodeLinkTitle")),canCopy?/*#__PURE__*/React.createElement(CopyButton,{buttonClass:"qr-code-copy-button",getClipboardData:this.getClipboardData}):null,/*#__PURE__*/React.createElement("br",null),/*#__PURE__*/React.createElement(QRCodeCanvas,{id:"qwc2-share-qr-canvas",size:128,value:this.props.shareUrl}))}}])}(React.Component);_defineProperty(ShareQRCode,"propTypes",{shareUrl:PropTypes.string});export{ShareQRCode as default};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},_typeof(o)}function _extends(){return _extends=Object.assign?Object.assign.bind():function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var r in t)({}).hasOwnProperty.call(t,r)&&(n[r]=t[r])}return n},_extends.apply(null,arguments)}function _classCallCheck(a,n){if(!(a instanceof n))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,r){for(var t=0;t<r.length;t++){var o=r[t];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,_toPropertyKey(o.key),o)}}function _createClass(e,r,t){return r&&_defineProperties(e.prototype,r),t&&_defineProperties(e,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function _callSuper(t,o,e){return o=_getPrototypeOf(o),_possibleConstructorReturn(t,_isNativeReflectConstruct()?Reflect.construct(o,e||[],_getPrototypeOf(t).constructor):o.apply(t,e))}function _possibleConstructorReturn(t,e){if(e&&("object"==_typeof(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return _assertThisInitialized(t)}function _assertThisInitialized(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function _isNativeReflectConstruct(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(t){}return(_isNativeReflectConstruct=function _isNativeReflectConstruct(){return!!t})()}function _getPrototypeOf(t){return _getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},_getPrototypeOf(t)}function _inherits(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&_setPrototypeOf(t,e)}function _setPrototypeOf(t,e){return _setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},_setPrototypeOf(t,e)}function _defineProperty(e,r,t){return(r=_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function _toPropertyKey(t){var i=_toPrimitive(t,"string");return"symbol"==_typeof(i)?i:i+""}function _toPrimitive(t,r){if("object"!=_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)}/**
|
|
2
|
+
* Copyright 2016 GeoSolutions Sas
|
|
3
|
+
* Copyright 2016-2024 Sourcepole AG
|
|
4
|
+
* All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the BSD-style license found in the
|
|
7
|
+
* LICENSE file in the root directory of this source tree.
|
|
8
|
+
*/import React from"react";import{FacebookShareButton,LinkedinShareButton,TwitterShareButton,WhatsappShareButton,EmailShareButton,FacebookShareCount,FacebookIcon,TwitterIcon,LinkedinIcon,WhatsappIcon,EmailIcon}from"react-share";import PropTypes from"prop-types";import LocaleUtils from"../../utils/LocaleUtils";import"./style/ShareSocials.css";var ShareSocials=/*#__PURE__*/function(_React$Component){function ShareSocials(){_classCallCheck(this,ShareSocials);return _callSuper(this,ShareSocials,arguments)}_inherits(ShareSocials,_React$Component);return _createClass(ShareSocials,[{key:"render",value:function render(){var countProps={};if(this.props.getCount){countProps.getCount=this.props.getCount}var title=this.props.shareTitle;var url=this.props.shareUrl;var socialTypes={email:/*#__PURE__*/React.createElement("div",{className:"social-box",key:"email"},/*#__PURE__*/React.createElement(EmailShareButton,{subject:title,url:url},/*#__PURE__*/React.createElement(EmailIcon,{round:true,size:32})),/*#__PURE__*/React.createElement("div",null,"\xA0")),facebook:/*#__PURE__*/React.createElement("div",{className:"social-box",key:"facebook"},/*#__PURE__*/React.createElement(FacebookShareButton,{quote:title,url:url},/*#__PURE__*/React.createElement(FacebookIcon,{round:true,size:32})),/*#__PURE__*/React.createElement(FacebookShareCount,_extends({url:url},countProps),function(count){return count})),twitter:/*#__PURE__*/React.createElement("div",{className:"social-box",key:"twitter"},/*#__PURE__*/React.createElement(TwitterShareButton,{title:title,url:url},/*#__PURE__*/React.createElement(TwitterIcon,{round:true,size:32})),/*#__PURE__*/React.createElement("div",null,"\xA0")),linkedin:/*#__PURE__*/React.createElement("div",{className:"social-box",key:"linkedin"},/*#__PURE__*/React.createElement(LinkedinShareButton,{title:title,url:url},/*#__PURE__*/React.createElement(LinkedinIcon,{round:true,size:32})),/*#__PURE__*/React.createElement("div",null,"\xA0")),whatsapp:/*#__PURE__*/React.createElement("div",{className:"social-box",key:"whatsapp"},/*#__PURE__*/React.createElement(WhatsappShareButton,{title:title,url:url},/*#__PURE__*/React.createElement(WhatsappIcon,{round:true,size:32})),/*#__PURE__*/React.createElement("div",null,"\xA0"))};var socialBoxes=[];if(this.props.showSocials===true){socialBoxes=Object.values(socialTypes)}else{this.props.showSocials.map(function(name){if(name in socialTypes){socialBoxes.push(socialTypes[name])}else{// eslint-disable-next-line
|
|
9
|
+
console.warn("`%s` is not a valid social network",name)}})}return/*#__PURE__*/React.createElement("div",{className:"social-links"},/*#__PURE__*/React.createElement("h4",null,LocaleUtils.tr("share.socialIntro")),/*#__PURE__*/React.createElement("div",{className:"social-boxes"},socialBoxes))}}])}(React.Component);_defineProperty(ShareSocials,"propTypes",{getCount:PropTypes.func,shareTitle:PropTypes.string,shareUrl:PropTypes.string,showSocials:PropTypes.oneOfType([PropTypes.bool,PropTypes.array])});_defineProperty(ShareSocials,"defaultProps",{shareTitle:"GeoSolutions"});export{ShareSocials as default};
|