qwc2 2025.10.13 → 2025.10.15
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/actions/display.js +30 -1
- package/actions/editing.js +22 -1
- package/actions/layerinfo.js +13 -1
- package/actions/layers.js +213 -3
- package/actions/localConfig.js +58 -1
- package/actions/locale.js +21 -1
- package/actions/locate.js +26 -1
- package/actions/logging.js +10 -1
- package/actions/map.js +105 -2
- package/actions/measurement.js +12 -1
- package/actions/processNotifications.js +37 -1
- package/actions/redlining.js +18 -1
- package/actions/redliningPick.js +12 -1
- package/actions/search.js +12 -1
- package/actions/serviceinfo.js +12 -1
- package/actions/task.js +55 -3
- package/actions/theme.js +339 -19
- package/actions/windows.js +164 -5
- package/components/AppMenu.js +435 -3
- package/components/AttributeForm.js +928 -32
- package/components/AttributeTableWidget.js +1105 -13
- package/components/AutoEditForm.js +189 -3
- package/components/CoordinateDisplayer.js +78 -2
- package/components/EditComboField.js +190 -6
- package/components/EditUploadField.js +315 -3
- package/components/ExportSelection.js +203 -2
- package/components/FullscreenSwitcher.js +90 -3
- package/components/Icon.js +81 -2
- package/components/IdentifyViewer.js +1161 -6
- package/components/ImportLayer.js +718 -20
- package/components/LayerInfoWindow.js +145 -2
- package/components/LinkFeatureForm.js +246 -5
- package/components/MapButton.js +88 -2
- package/components/MapSelection.js +287 -8
- package/components/MessageBar.js +68 -2
- package/components/NumericInputWindow.js +359 -2
- package/components/PickFeature.js +266 -2
- package/components/PluginsContainer.js +227 -8
- package/components/PrintSelection.js +620 -49
- package/components/ProcessNotifications.js +104 -2
- package/components/QtDesignerForm.js +1137 -18
- package/components/ResizeableWindow.js +591 -8
- package/components/SearchBox.js +1307 -20
- package/components/ServiceInfoWindow.js +107 -2
- package/components/SideBar.js +204 -4
- package/components/StandardApp.js +381 -20
- package/components/Swipeable.js +15 -1
- package/components/TaskBar.js +85 -2
- package/components/ThemeLayersListWindow.js +216 -4
- package/components/ThemeList.js +381 -7
- package/components/Toolbar.js +106 -2
- package/components/WindowManager.js +178 -2
- package/components/map/OlLayer.js +257 -6
- package/components/map/OlMap.js +405 -5
- package/components/map/layers/BingLayer.js +31 -2
- package/components/map/layers/GoogleLayer.js +222 -19
- package/components/map/layers/GraticuleLayer.js +21 -1
- package/components/map/layers/ImageLayer.js +15 -1
- package/components/map/layers/MVTLayer.js +52 -2
- package/components/map/layers/OSMLayer.js +24 -2
- package/components/map/layers/OverlayLayer.js +55 -3
- package/components/map/layers/VectorLayer.js +173 -8
- package/components/map/layers/WFSLayer.js +220 -6
- package/components/map/layers/WMSLayer.js +180 -6
- package/components/map/layers/WMTSLayer.js +67 -3
- package/components/map/layers/XYZLayer.js +24 -2
- package/components/map/layers/index.js +28 -1
- package/components/map3d/EditDataset3D.js +190 -3
- package/components/map3d/HeightProfile3D.js +402 -3
- package/components/map3d/ImportObjects3D.js +162 -2
- package/components/map3d/Map3D.js +1304 -38
- package/components/map3d/MapControls3D.js +392 -7
- package/components/map3d/SearchField3D.js +183 -11
- package/components/map3d/View3DSwitcher.js +98 -2
- package/components/map3d/drawtool/CreateTool3D.js +174 -4
- package/components/map3d/drawtool/EditTool3D.js +590 -6
- package/components/map3d/drawtool/NumericInput3D.js +336 -4
- package/components/map3d/layers/GeoTIFFLayer3D.js +15 -1
- package/components/map3d/layers/VectorLayer3D.js +53 -2
- package/components/map3d/layers/WFSLayer3D.js +109 -3
- package/components/map3d/layers/WMSLayer3D.js +70 -2
- package/components/map3d/layers/WMTSLayer3D.js +27 -3
- package/components/map3d/layers/index.js +14 -1
- package/components/map3d/utils/FirstPersonControls3D.js +423 -16
- package/components/map3d/utils/MiscUtils3D.js +221 -13
- package/components/map3d/utils/OrbitControls3D.js +176 -5
- package/components/map3d/utils/Tiles3DStyle.js +238 -9
- package/components/share/ShareLink.js +54 -2
- package/components/share/ShareQRCode.js +62 -2
- package/components/share/ShareSocials.js +125 -3
- package/components/timeline/FixedTimeline.js +236 -5
- package/components/timeline/InfiniteTimeline.js +347 -8
- package/components/timeline/TimelineFeaturesSlider.js +439 -5
- package/components/widgets/AccordeonWidget.js +96 -2
- package/components/widgets/ButtonBar.js +124 -2
- package/components/widgets/ColorButton.js +201 -3
- package/components/widgets/ComboBox.js +166 -2
- package/components/widgets/CopyButton.js +110 -2
- package/components/widgets/DateTimeInput.js +100 -3
- package/components/widgets/EditableSelect.js +230 -3
- package/components/widgets/FileSelector.js +128 -4
- package/components/widgets/Input.js +124 -2
- package/components/widgets/InputContainer.js +96 -2
- package/components/widgets/LayerCatalogWidget.js +219 -3
- package/components/widgets/MenuButton.js +157 -1
- package/components/widgets/ModalDialog.js +64 -2
- package/components/widgets/NavBar.js +119 -2
- package/components/widgets/NumberInput.js +226 -4
- package/components/widgets/PopupMenu.js +72 -1
- package/components/widgets/Primitives.js +6 -1
- package/components/widgets/ReCaptchaWidget.js +55 -1
- package/components/widgets/SearchWidget.js +255 -2
- package/components/widgets/Spinner.js +44 -2
- package/components/widgets/SuggestionInput.js +77 -2
- package/components/widgets/TextInput.js +308 -2
- package/components/widgets/ToggleSwitch.js +85 -2
- package/components/widgets/VectorLayerPicker.js +85 -3
- package/libs/openlayers.js +225 -5
- package/package.json +1 -1
- package/plugins/API.js +358 -15
- package/plugins/AttributeTable.js +109 -3
- package/plugins/Authentication.js +130 -5
- package/plugins/BackgroundSwitcher.js +218 -4
- package/plugins/Bookmark.js +289 -3
- package/plugins/BottomBar.js +298 -4
- package/plugins/CookiePopup.js +67 -3
- package/plugins/Cyclomedia.js +442 -5
- package/plugins/Editing.js +497 -9
- package/plugins/FeatureForm.js +366 -4
- package/plugins/FeatureSearch.js +458 -3
- package/plugins/GeometryDigitizer.js +664 -7
- package/plugins/HeightProfile.js +768 -15
- package/plugins/Help.js +102 -3
- package/plugins/HomeButton.js +80 -3
- package/plugins/Identify.js +543 -5
- package/plugins/LayerCatalog.js +215 -4
- package/plugins/LayerTree.js +1194 -6
- package/plugins/LocateButton.js +94 -3
- package/plugins/Map.js +320 -16
- package/plugins/MapCompare.js +94 -3
- package/plugins/MapCopyright.js +127 -5
- package/plugins/MapExport.js +613 -20
- package/plugins/MapFilter.js +868 -12
- package/plugins/MapInfoTooltip.js +277 -3
- package/plugins/MapLegend.js +253 -4
- package/plugins/MapTip.js +290 -4
- package/plugins/Measure.js +220 -4
- package/plugins/NewsPopup.js +137 -3
- package/plugins/OverviewMap.js +167 -7
- package/plugins/Panoramax.js +340 -2
- package/plugins/Portal.js +199 -4
- package/plugins/Print.js +1231 -15
- package/plugins/Redlining.js +750 -6
- package/plugins/Reports.js +332 -3
- package/plugins/Routing.js +1278 -15
- package/plugins/ScratchDrawing.js +173 -5
- package/plugins/Settings.js +241 -4
- package/plugins/Share.js +198 -3
- package/plugins/StartupMarker.js +84 -4
- package/plugins/TaskButton.js +88 -3
- package/plugins/ThemeSwitcher.js +164 -4
- package/plugins/TimeManager.js +971 -10
- package/plugins/TopBar.js +300 -7
- package/plugins/TourGuide.js +213 -2
- package/plugins/ValueTool.js +419 -4
- package/plugins/View3D.js +519 -14
- package/plugins/ZoomButtons.js +165 -3
- package/plugins/map/EditingSupport.js +199 -7
- package/plugins/map/LocateSupport.js +260 -4
- package/plugins/map/MeasurementSupport.js +216 -8
- package/plugins/map/RedliningPickSupport.js +201 -7
- package/plugins/map/RedliningSupport.js +726 -17
- package/plugins/map/SnapInteraction.js +101 -1
- package/plugins/map/SnapSupport.js +210 -2
- package/plugins/map/SnappingSupport.js +356 -17
- package/plugins/map3d/BackgroundSwitcher3D.js +44 -3
- package/plugins/map3d/BottomBar3D.js +118 -3
- package/plugins/map3d/Compare3D.js +422 -8
- package/plugins/map3d/Draw3D.js +353 -6
- package/plugins/map3d/ExportObjects3D.js +393 -18
- package/plugins/map3d/HideObjects3D.js +313 -12
- package/plugins/map3d/Identify3D.js +283 -12
- package/plugins/map3d/LayerTree3D.js +323 -3
- package/plugins/map3d/MapCopyright3D.js +128 -5
- package/plugins/map3d/MapExport3D.js +590 -10
- package/plugins/map3d/MapLight3D.js +553 -6
- package/plugins/map3d/Measure3D.js +571 -20
- package/plugins/map3d/OverviewMap3D.js +169 -3
- package/plugins/map3d/Settings3D.js +73 -3
- package/plugins/map3d/TopBar3D.js +207 -9
- package/plugins/redlining/RedliningBufferSupport.js +206 -3
- package/reducers/display.js +34 -2
- package/reducers/editing.js +68 -3
- package/reducers/index.js +9 -1
- package/reducers/layerinfo.js +26 -2
- package/reducers/layers.js +456 -9
- package/reducers/localConfig.js +122 -2
- package/reducers/locale.js +38 -2
- package/reducers/locate.js +40 -2
- package/reducers/map.js +176 -5
- package/reducers/measurement.js +42 -2
- package/reducers/processNotifications.js +49 -2
- package/reducers/redlining.js +50 -2
- package/reducers/redliningPick.js +27 -2
- package/reducers/search.js +20 -1
- package/reducers/serviceinfo.js +25 -2
- package/reducers/task.js +45 -2
- package/reducers/theme.js +51 -2
- package/reducers/windows.js +203 -2
- package/scripts/dist.sh +1 -1
- package/scripts/gen-plugin-docs.js +152 -2
- package/scripts/makeIconkit.js +85 -6
- package/scripts/themesConfig.js +742 -40
- package/scripts/updateTranslations.js +251 -10
- package/selectors/searchproviders.js +44 -2
- package/stores/StandardStore.js +42 -2
- package/utils/ConfigUtils.js +84 -3
- package/utils/CoordinatesUtils.js +234 -23
- package/utils/DxfUtils.js +237 -11
- package/utils/EditingInterface.js +421 -87
- package/utils/EditingUtils.js +357 -13
- package/utils/ElevationInterface.js +83 -22
- package/utils/FeatureStyles.js +429 -5
- package/utils/IdentifyUtils.js +443 -7
- package/utils/ImageEditor.js +79 -9
- package/utils/LayerUtils.js +1516 -50
- package/utils/LocaleUtils.js +117 -7
- package/utils/MapUtils.js +241 -59
- package/utils/MeasureUtils.js +323 -2
- package/utils/MiscUtils.js +189 -11
- package/utils/PermaLinkUtils.js +429 -6
- package/utils/PluginStore.js +27 -1
- package/utils/ResourceRegistry.js +15 -1
- package/utils/RoutingInterface.js +307 -7
- package/utils/SearchProviders.js +722 -19
- package/utils/ServiceLayerUtils.js +669 -14
- package/utils/Signal.js +32 -2
- package/utils/ThemeUtils.js +341 -7
- package/utils/VectorLayerUtils.js +589 -15
- package/utils/expr_grammar/grammar.js +2239 -2
- package/utils/expr_grammar/test.js +65 -3
|
@@ -1,7 +1,364 @@
|
|
|
1
|
-
function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==
|
|
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); }
|
|
2
|
+
function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }
|
|
3
|
+
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."); }
|
|
4
|
+
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; } }
|
|
5
|
+
function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); }
|
|
6
|
+
function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }
|
|
7
|
+
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; }
|
|
8
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
9
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
10
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
11
|
+
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); } }
|
|
12
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
13
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
14
|
+
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); }
|
|
15
|
+
function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
|
16
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
17
|
+
function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
|
|
18
|
+
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); }
|
|
19
|
+
function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
|
|
20
|
+
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; }
|
|
21
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
22
|
+
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); }
|
|
23
|
+
/**
|
|
2
24
|
* Copyright 2024 Sourcepole AG
|
|
3
25
|
* All rights reserved.
|
|
4
26
|
*
|
|
5
27
|
* This source code is licensed under the BSD-style license found in the
|
|
6
28
|
* LICENSE file in the root directory of this source tree.
|
|
7
|
-
*/import React from"react";import{connect}from"react-redux";import PropTypes from"prop-types";import{addLayerFeatures,LayerRole,removeLayer}from"../actions/layers";import ConfigUtils from"../utils/ConfigUtils";import CoordinatesUtils from"../utils/CoordinatesUtils";import LocaleUtils from"../utils/LocaleUtils";import VectorLayerUtils from"../utils/VectorLayerUtils";import Icon from"./Icon";import ResizeableWindow from"./ResizeableWindow";import TextInput from"./widgets/TextInput";import"./style/NumericInputWindow.css";var NumericInputWindow=/*#__PURE__*/function(_React$Component){function NumericInputWindow(){var _this;_classCallCheck(this,NumericInputWindow);for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++){args[_key]=arguments[_key]}_this=_callSuper(this,NumericInputWindow,[].concat(args));_defineProperty(_this,"state",{highlightedNode:null,displayCrs:null,feature:null,geometry:null});_defineProperty(_this,"coordinatesChanged",function(coordinates){_this.props.onFeatureChanged(_objectSpread(_objectSpread({},_this.state.feature),{},{geometry:VectorLayerUtils.reprojectGeometry(_objectSpread(_objectSpread({},_this.state.geometry),{},{coordinates:coordinates}),_this.state.displayCrs,_this.props.mapCrs)}))});_defineProperty(_this,"renderOrdinateInput",function(ordinate,_onChange){var decimals=CoordinatesUtils.getPrecision(_this.state.displayCrs);var value=ordinate.toFixed(decimals);return/*#__PURE__*/React.createElement(TextInput,{onChange:function onChange(text){return _this.onValueChanged(text,decimals,_onChange)},value:value})});_defineProperty(_this,"renderMeasureInput",function(measure,_onChange2){var decimals=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;decimals=decimals!==null&&decimals!==void 0?decimals:ConfigUtils.getConfigProp("measurementPrecision",null,2);var value=measure.toFixed(decimals);return/*#__PURE__*/React.createElement(TextInput,{onChange:function onChange(text){return _this.onValueChanged(text,decimals,_onChange2)},value:value})});_defineProperty(_this,"onValueChanged",function(text,decimals,onChange){var number=parseFloat(text);if(!isNaN(number)){var factor=Math.pow(10,decimals);onChange(Math.round(number*factor)/factor)}});_defineProperty(_this,"renderPointInputForm",function(){var coordinates=_this.state.geometry.coordinates;return/*#__PURE__*/React.createElement("table",null,/*#__PURE__*/React.createElement("tbody",null,/*#__PURE__*/React.createElement("tr",null,/*#__PURE__*/React.createElement("td",null,"x:\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderOrdinateInput(coordinates[0],function(value){return _this.updatePoint(value,0)})),/*#__PURE__*/React.createElement("td",null,"y:\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderOrdinateInput(coordinates[1],function(value){return _this.updatePoint(value,1)})))))});_defineProperty(_this,"updatePoint",function(number,ord){var newCoordinates=_toConsumableArray(_this.state.geometry.coordinates);newCoordinates[ord]=number;_this.coordinatesChanged(newCoordinates)});_defineProperty(_this,"renderCoordinateListInputForm",function(){var coordinates=_this.state.geometry.coordinates;if(_this.state.feature.shape==="Polygon"){coordinates=coordinates[0]}return/*#__PURE__*/React.createElement("table",null,/*#__PURE__*/React.createElement("tbody",null,coordinates.map(function(entry,idx){return/*#__PURE__*/React.createElement("tr",{key:"coo"+idx,onMouseEnter:function onMouseEnter(){return _this.highlightListCoordinate(idx)},onMouseLeave:function onMouseLeave(){return _this.clearListCoordinateHighlight(idx)}},/*#__PURE__*/React.createElement("td",null,/*#__PURE__*/React.createElement(Icon,{icon:"plus",onClick:function onClick(){return _this.insertCoordinate(idx)}})),/*#__PURE__*/React.createElement("td",null,"x:\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderOrdinateInput(coordinates[idx][0],function(value){return _this.updateListCoordinate(value,idx,0)})),/*#__PURE__*/React.createElement("td",null,"y:\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderOrdinateInput(coordinates[idx][1],function(value){return _this.updateListCoordinate(value,idx,1)})),/*#__PURE__*/React.createElement("td",null,/*#__PURE__*/React.createElement(Icon,{icon:"trash",onClick:function onClick(){return _this.removeCoordinate(idx)}})))}),/*#__PURE__*/React.createElement("tr",null,/*#__PURE__*/React.createElement("td",null,/*#__PURE__*/React.createElement(Icon,{icon:"plus",onClick:function onClick(){return _this.insertCoordinate(coordinates.length)}})),/*#__PURE__*/React.createElement("td",{colSpan:"5"}))))});_defineProperty(_this,"updateListCoordinate",function(number,nodeidx,ord){var newCoordinates=_toConsumableArray(_this.state.geometry.coordinates);var newpoint=null;if(_this.state.feature.shape==="Polygon"){newCoordinates[0]=_toConsumableArray(newCoordinates[0]);newCoordinates[0][nodeidx]=_toConsumableArray(newCoordinates[0][nodeidx]);newCoordinates[0][nodeidx][ord]=number;newpoint=newCoordinates[0][nodeidx]}else{newCoordinates[nodeidx]=_toConsumableArray(newCoordinates[nodeidx]);newCoordinates[nodeidx][ord]=number;newpoint=newCoordinates[nodeidx]}_this.coordinatesChanged(newCoordinates);_this.highlightListCoordinate(nodeidx,newpoint)});_defineProperty(_this,"computeInsPoint",function(coordinates,idx){if(idx===0){return _toConsumableArray(coordinates[0])}else if(idx>coordinates.length-1){return _toConsumableArray(coordinates[coordinates.length-1])}else{return[0.5*(coordinates[idx-1][0]+coordinates[idx][0]),0.5*(coordinates[idx-1][1]+coordinates[idx][1])]}});_defineProperty(_this,"insertCoordinate",function(idx){var newCoordinates=_toConsumableArray(_this.state.geometry.coordinates);if(_this.state.feature.shape==="Polygon"){newCoordinates[0]=_toConsumableArray(newCoordinates[0]);newCoordinates[0].splice(idx,0,_this.computeInsPoint(newCoordinates[0],idx))}else{newCoordinates.splice(idx,0,_this.computeInsPoint(newCoordinates,idx))}_this.coordinatesChanged(newCoordinates);_this.props.removeLayer("numericinputselection")});_defineProperty(_this,"removeCoordinate",function(idx){var newCoordinates=_toConsumableArray(_this.state.geometry.coordinates);if(_this.state.feature.shape==="Polygon"){newCoordinates[0]=_toConsumableArray(newCoordinates[0]);newCoordinates[0].splice(idx,1)}else{newCoordinates.splice(idx,1)}_this.coordinatesChanged(newCoordinates);_this.props.removeLayer("numericinputselection")});_defineProperty(_this,"highlightListCoordinate",function(idx){var newpoint=arguments.length>1&&arguments[1]!==undefined?arguments[1]:null;var isPolygon=_this.state.feature.shape==="Polygon";var coordinates=_this.state.geometry.coordinates;var point=CoordinatesUtils.reproject(newpoint||(isPolygon?coordinates[0][idx]:coordinates[idx]),_this.state.displayCrs,_this.props.mapCrs);_this.setState({highlightedNode:idx});var feature={type:"Feature",geometry:{type:"Point",coordinates:point}};var sellayer={id:"numericinputselection",role:LayerRole.SELECTION};_this.props.addLayerFeatures(sellayer,[feature],true)});_defineProperty(_this,"clearListCoordinateHighlight",function(idx){if(_this.state.highlightedNode===idx){_this.setState({highlightedNode:null});_this.props.removeLayer("numericinputselection")}});_defineProperty(_this,"renderCircleInputForm",function(){var circleParams=_this.state.feature.circleParams;var center=CoordinatesUtils.reproject(circleParams.center,_this.props.mapCrs,_this.state.displayCrs);return/*#__PURE__*/React.createElement("table",null,/*#__PURE__*/React.createElement("tbody",null,/*#__PURE__*/React.createElement("tr",null,/*#__PURE__*/React.createElement("td",null,"x:\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderOrdinateInput(center[0],function(value){return _this.updateCircle(value,center[1],circleParams.radius)}))),/*#__PURE__*/React.createElement("tr",null,/*#__PURE__*/React.createElement("td",null,"y:\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderOrdinateInput(center[1],function(value){return _this.updateCircle(center[0],value,circleParams.radius)}))),/*#__PURE__*/React.createElement("tr",null,/*#__PURE__*/React.createElement("td",null,"r:\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderMeasureInput(circleParams.radius,function(value){return _this.updateCircle(center[0],center[1],value)})))))});_defineProperty(_this,"updateCircle",function(x,y,r){var center=CoordinatesUtils.reproject([x,y],_this.state.displayCrs,_this.props.mapCrs);var newFeature=_objectSpread(_objectSpread({},_this.state.feature),{},{circleParams:{center:center,radius:r}});_this.props.onFeatureChanged(newFeature)});_defineProperty(_this,"renderBoxInputForm",function(){var shape=_this.state.feature.shape;var coordinates=_this.state.geometry.coordinates[0];var x=0.5*(coordinates[0][0]+coordinates[2][0]);var y=0.5*(coordinates[0][1]+coordinates[2][1]);var d1x=Math.abs(coordinates[1][0]-coordinates[0][0]);var d1y=Math.abs(coordinates[1][1]-coordinates[0][1]);var w=Math.sqrt(d1x*d1x+d1y*d1y);var r=Math.atan2(d1y/w,d1x/w)/Math.PI*180;var d2x=0;var d2y=0;var h=w;if(shape==="Box"){d2x=Math.abs(coordinates[2][0]-coordinates[1][0]);d2y=Math.abs(coordinates[2][1]-coordinates[1][1]);h=Math.sqrt(d2x*d2x+d2y*d2y)}return/*#__PURE__*/React.createElement("table",null,/*#__PURE__*/React.createElement("tbody",null,/*#__PURE__*/React.createElement("tr",null,/*#__PURE__*/React.createElement("td",null,"x:\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderOrdinateInput(x,function(value){return _this.updateBox(value,y,w,h,r)}))),/*#__PURE__*/React.createElement("tr",null,/*#__PURE__*/React.createElement("td",null,"y:\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderOrdinateInput(y,function(value){return _this.updateBox(x,value,w,h,r)}))),shape==="Box"?[/*#__PURE__*/React.createElement("tr",{key:"w"},/*#__PURE__*/React.createElement("td",null,LocaleUtils.tr("numericinput.width"),":\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderMeasureInput(w,function(value){return _this.updateBox(x,y,value,h,r)}))),/*#__PURE__*/React.createElement("tr",{key:"h"},/*#__PURE__*/React.createElement("td",null,LocaleUtils.tr("numericinput.height"),":\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderMeasureInput(h,function(value){return _this.updateBox(x,y,w,value,r)})))]:/*#__PURE__*/React.createElement("tr",null,/*#__PURE__*/React.createElement("td",null,LocaleUtils.tr("numericinput.side"),":\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderMeasureInput(w,function(value){return _this.updateBox(x,y,value,value,r)}))),/*#__PURE__*/React.createElement("tr",null,/*#__PURE__*/React.createElement("td",null,LocaleUtils.tr("numericinput.angle"),":\xA0"),/*#__PURE__*/React.createElement("td",null,_this.renderMeasureInput(r,function(value){return _this.updateBox(x,y,w,h,value)},1)))))});_defineProperty(_this,"updateBox",function(x,y,w,h,r){var alpha=r/180*Math.PI;var w2=0.5*w;var h2=0.5*h;var cosa=Math.cos(alpha);var sina=Math.sin(alpha);var newCoordinates=[[[x+cosa*w2-sina*h2,y+sina*w2+cosa*h2],[x-cosa*w2-sina*h2,y-sina*w2+cosa*h2],[x-cosa*w2+sina*h2,y-sina*w2-cosa*h2],[x+cosa*w2+sina*h2,y+sina*w2-cosa*h2],[x+cosa*w2-sina*h2,y+sina*w2+cosa*h2]]];_this.coordinatesChanged(newCoordinates)});return _this}_inherits(NumericInputWindow,_React$Component);return _createClass(NumericInputWindow,[{key:"componentDidMount",value:function componentDidMount(){this.componentDidUpdate({})}},{key:"componentDidUpdate",value:function componentDidUpdate(prevProps){var _this$props$feature,_prevProps$feature;if(prevProps.feature&&((_this$props$feature=this.props.feature)===null||_this$props$feature===void 0?void 0:_this$props$feature.id)!==((_prevProps$feature=prevProps.feature)===null||_prevProps$feature===void 0?void 0:_prevProps$feature.id)){this.props.removeLayer("numericinputselection")}}},{key:"render",value:function render(){var shapeInputForms={Point:this.renderPointInputForm,LineString:this.renderCoordinateListInputForm,Polygon:this.renderCoordinateListInputForm,Circle:this.renderCircleInputForm,Box:this.renderBoxInputForm,Square:this.renderBoxInputForm};var body=null;if(!this.state.geometry){body=/*#__PURE__*/React.createElement("span",null,LocaleUtils.tr("numericinput.nofeature"))}else if(shapeInputForms[this.state.feature.shape]){body=shapeInputForms[this.state.feature.shape]()}else{body=LocaleUtils.tr("numericinput.featureunsupported")}return/*#__PURE__*/React.createElement(ResizeableWindow,{fitHeight:true,icon:"numericinput",initialWidth:320,onClose:this.props.onClose,scrollable:true,title:LocaleUtils.tr("numericinput.windowtitle")},/*#__PURE__*/React.createElement("div",{className:"numeric-input-widget-body",role:"body"},body))}}],[{key:"getDerivedStateFromProps",value:function getDerivedStateFromProps(nextProps,state){var newState={feature:nextProps.feature,displayCrs:nextProps.displayCrs};if(state.feature&&!nextProps.feature){newState.geometry=null}else if(nextProps.feature&&(nextProps.feature!==state.feature||nextProps.displayCrs!==state.displayCrs)){newState.geometry=VectorLayerUtils.reprojectGeometry(nextProps.feature.geometry,nextProps.mapCrs,nextProps.displayCrs)}return newState}}])}(React.Component);_defineProperty(NumericInputWindow,"propTypes",{addLayerFeatures:PropTypes.func,displayCrs:PropTypes.string,feature:PropTypes.object,mapCrs:PropTypes.string,onClose:PropTypes.func,onFeatureChanged:PropTypes.func,removeLayer:PropTypes.func});export default connect(function(state){return{displayCrs:state.map.displayCrs,mapCrs:state.map.projection}},{addLayerFeatures:addLayerFeatures,removeLayer:removeLayer})(NumericInputWindow);
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
import React from 'react';
|
|
32
|
+
import { connect } from 'react-redux';
|
|
33
|
+
import PropTypes from 'prop-types';
|
|
34
|
+
import { addLayerFeatures, LayerRole, removeLayer } from '../actions/layers';
|
|
35
|
+
import ConfigUtils from '../utils/ConfigUtils';
|
|
36
|
+
import CoordinatesUtils from '../utils/CoordinatesUtils';
|
|
37
|
+
import LocaleUtils from '../utils/LocaleUtils';
|
|
38
|
+
import VectorLayerUtils from '../utils/VectorLayerUtils';
|
|
39
|
+
import Icon from './Icon';
|
|
40
|
+
import ResizeableWindow from './ResizeableWindow';
|
|
41
|
+
import TextInput from './widgets/TextInput';
|
|
42
|
+
import './style/NumericInputWindow.css';
|
|
43
|
+
var NumericInputWindow = /*#__PURE__*/function (_React$Component) {
|
|
44
|
+
function NumericInputWindow() {
|
|
45
|
+
var _this;
|
|
46
|
+
_classCallCheck(this, NumericInputWindow);
|
|
47
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
48
|
+
args[_key] = arguments[_key];
|
|
49
|
+
}
|
|
50
|
+
_this = _callSuper(this, NumericInputWindow, [].concat(args));
|
|
51
|
+
_defineProperty(_this, "state", {
|
|
52
|
+
highlightedNode: null,
|
|
53
|
+
displayCrs: null,
|
|
54
|
+
feature: null,
|
|
55
|
+
geometry: null
|
|
56
|
+
});
|
|
57
|
+
_defineProperty(_this, "coordinatesChanged", function (coordinates) {
|
|
58
|
+
_this.props.onFeatureChanged(_objectSpread(_objectSpread({}, _this.state.feature), {}, {
|
|
59
|
+
geometry: VectorLayerUtils.reprojectGeometry(_objectSpread(_objectSpread({}, _this.state.geometry), {}, {
|
|
60
|
+
coordinates: coordinates
|
|
61
|
+
}), _this.state.displayCrs, _this.props.mapCrs)
|
|
62
|
+
}));
|
|
63
|
+
});
|
|
64
|
+
_defineProperty(_this, "renderOrdinateInput", function (ordinate, _onChange) {
|
|
65
|
+
var decimals = CoordinatesUtils.getPrecision(_this.state.displayCrs);
|
|
66
|
+
var value = ordinate.toFixed(decimals);
|
|
67
|
+
return /*#__PURE__*/React.createElement(TextInput, {
|
|
68
|
+
onChange: function onChange(text) {
|
|
69
|
+
return _this.onValueChanged(text, decimals, _onChange);
|
|
70
|
+
},
|
|
71
|
+
value: value
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
_defineProperty(_this, "renderMeasureInput", function (measure, _onChange2) {
|
|
75
|
+
var decimals = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
|
|
76
|
+
decimals = decimals !== null && decimals !== void 0 ? decimals : ConfigUtils.getConfigProp("measurementPrecision", null, 2);
|
|
77
|
+
var value = measure.toFixed(decimals);
|
|
78
|
+
return /*#__PURE__*/React.createElement(TextInput, {
|
|
79
|
+
onChange: function onChange(text) {
|
|
80
|
+
return _this.onValueChanged(text, decimals, _onChange2);
|
|
81
|
+
},
|
|
82
|
+
value: value
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
_defineProperty(_this, "onValueChanged", function (text, decimals, onChange) {
|
|
86
|
+
var number = parseFloat(text);
|
|
87
|
+
if (!isNaN(number)) {
|
|
88
|
+
var factor = Math.pow(10, decimals);
|
|
89
|
+
onChange(Math.round(number * factor) / factor);
|
|
90
|
+
}
|
|
91
|
+
});
|
|
92
|
+
_defineProperty(_this, "renderPointInputForm", function () {
|
|
93
|
+
var coordinates = _this.state.geometry.coordinates;
|
|
94
|
+
return /*#__PURE__*/React.createElement("table", null, /*#__PURE__*/React.createElement("tbody", null, /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, "x:\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderOrdinateInput(coordinates[0], function (value) {
|
|
95
|
+
return _this.updatePoint(value, 0);
|
|
96
|
+
})), /*#__PURE__*/React.createElement("td", null, "y:\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderOrdinateInput(coordinates[1], function (value) {
|
|
97
|
+
return _this.updatePoint(value, 1);
|
|
98
|
+
})))));
|
|
99
|
+
});
|
|
100
|
+
_defineProperty(_this, "updatePoint", function (number, ord) {
|
|
101
|
+
var newCoordinates = _toConsumableArray(_this.state.geometry.coordinates);
|
|
102
|
+
newCoordinates[ord] = number;
|
|
103
|
+
_this.coordinatesChanged(newCoordinates);
|
|
104
|
+
});
|
|
105
|
+
_defineProperty(_this, "renderCoordinateListInputForm", function () {
|
|
106
|
+
var coordinates = _this.state.geometry.coordinates;
|
|
107
|
+
if (_this.state.feature.shape === 'Polygon') {
|
|
108
|
+
coordinates = coordinates[0];
|
|
109
|
+
}
|
|
110
|
+
return /*#__PURE__*/React.createElement("table", null, /*#__PURE__*/React.createElement("tbody", null, coordinates.map(function (entry, idx) {
|
|
111
|
+
return /*#__PURE__*/React.createElement("tr", {
|
|
112
|
+
key: "coo" + idx,
|
|
113
|
+
onMouseEnter: function onMouseEnter() {
|
|
114
|
+
return _this.highlightListCoordinate(idx);
|
|
115
|
+
},
|
|
116
|
+
onMouseLeave: function onMouseLeave() {
|
|
117
|
+
return _this.clearListCoordinateHighlight(idx);
|
|
118
|
+
}
|
|
119
|
+
}, /*#__PURE__*/React.createElement("td", null, /*#__PURE__*/React.createElement(Icon, {
|
|
120
|
+
icon: "plus",
|
|
121
|
+
onClick: function onClick() {
|
|
122
|
+
return _this.insertCoordinate(idx);
|
|
123
|
+
}
|
|
124
|
+
})), /*#__PURE__*/React.createElement("td", null, "x:\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderOrdinateInput(coordinates[idx][0], function (value) {
|
|
125
|
+
return _this.updateListCoordinate(value, idx, 0);
|
|
126
|
+
})), /*#__PURE__*/React.createElement("td", null, "y:\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderOrdinateInput(coordinates[idx][1], function (value) {
|
|
127
|
+
return _this.updateListCoordinate(value, idx, 1);
|
|
128
|
+
})), /*#__PURE__*/React.createElement("td", null, /*#__PURE__*/React.createElement(Icon, {
|
|
129
|
+
icon: "trash",
|
|
130
|
+
onClick: function onClick() {
|
|
131
|
+
return _this.removeCoordinate(idx);
|
|
132
|
+
}
|
|
133
|
+
})));
|
|
134
|
+
}), /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, /*#__PURE__*/React.createElement(Icon, {
|
|
135
|
+
icon: "plus",
|
|
136
|
+
onClick: function onClick() {
|
|
137
|
+
return _this.insertCoordinate(coordinates.length);
|
|
138
|
+
}
|
|
139
|
+
})), /*#__PURE__*/React.createElement("td", {
|
|
140
|
+
colSpan: "5"
|
|
141
|
+
}))));
|
|
142
|
+
});
|
|
143
|
+
_defineProperty(_this, "updateListCoordinate", function (number, nodeidx, ord) {
|
|
144
|
+
var newCoordinates = _toConsumableArray(_this.state.geometry.coordinates);
|
|
145
|
+
var newpoint = null;
|
|
146
|
+
if (_this.state.feature.shape === 'Polygon') {
|
|
147
|
+
newCoordinates[0] = _toConsumableArray(newCoordinates[0]);
|
|
148
|
+
newCoordinates[0][nodeidx] = _toConsumableArray(newCoordinates[0][nodeidx]);
|
|
149
|
+
newCoordinates[0][nodeidx][ord] = number;
|
|
150
|
+
newpoint = newCoordinates[0][nodeidx];
|
|
151
|
+
} else {
|
|
152
|
+
newCoordinates[nodeidx] = _toConsumableArray(newCoordinates[nodeidx]);
|
|
153
|
+
newCoordinates[nodeidx][ord] = number;
|
|
154
|
+
newpoint = newCoordinates[nodeidx];
|
|
155
|
+
}
|
|
156
|
+
_this.coordinatesChanged(newCoordinates);
|
|
157
|
+
_this.highlightListCoordinate(nodeidx, newpoint);
|
|
158
|
+
});
|
|
159
|
+
_defineProperty(_this, "computeInsPoint", function (coordinates, idx) {
|
|
160
|
+
if (idx === 0) {
|
|
161
|
+
return _toConsumableArray(coordinates[0]);
|
|
162
|
+
} else if (idx > coordinates.length - 1) {
|
|
163
|
+
return _toConsumableArray(coordinates[coordinates.length - 1]);
|
|
164
|
+
} else {
|
|
165
|
+
return [0.5 * (coordinates[idx - 1][0] + coordinates[idx][0]), 0.5 * (coordinates[idx - 1][1] + coordinates[idx][1])];
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
_defineProperty(_this, "insertCoordinate", function (idx) {
|
|
169
|
+
var newCoordinates = _toConsumableArray(_this.state.geometry.coordinates);
|
|
170
|
+
if (_this.state.feature.shape === 'Polygon') {
|
|
171
|
+
newCoordinates[0] = _toConsumableArray(newCoordinates[0]);
|
|
172
|
+
newCoordinates[0].splice(idx, 0, _this.computeInsPoint(newCoordinates[0], idx));
|
|
173
|
+
} else {
|
|
174
|
+
newCoordinates.splice(idx, 0, _this.computeInsPoint(newCoordinates, idx));
|
|
175
|
+
}
|
|
176
|
+
_this.coordinatesChanged(newCoordinates);
|
|
177
|
+
_this.props.removeLayer("numericinputselection");
|
|
178
|
+
});
|
|
179
|
+
_defineProperty(_this, "removeCoordinate", function (idx) {
|
|
180
|
+
var newCoordinates = _toConsumableArray(_this.state.geometry.coordinates);
|
|
181
|
+
if (_this.state.feature.shape === 'Polygon') {
|
|
182
|
+
newCoordinates[0] = _toConsumableArray(newCoordinates[0]);
|
|
183
|
+
newCoordinates[0].splice(idx, 1);
|
|
184
|
+
} else {
|
|
185
|
+
newCoordinates.splice(idx, 1);
|
|
186
|
+
}
|
|
187
|
+
_this.coordinatesChanged(newCoordinates);
|
|
188
|
+
_this.props.removeLayer("numericinputselection");
|
|
189
|
+
});
|
|
190
|
+
_defineProperty(_this, "highlightListCoordinate", function (idx) {
|
|
191
|
+
var newpoint = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
|
|
192
|
+
var isPolygon = _this.state.feature.shape === 'Polygon';
|
|
193
|
+
var coordinates = _this.state.geometry.coordinates;
|
|
194
|
+
var point = CoordinatesUtils.reproject(newpoint || (isPolygon ? coordinates[0][idx] : coordinates[idx]), _this.state.displayCrs, _this.props.mapCrs);
|
|
195
|
+
_this.setState({
|
|
196
|
+
highlightedNode: idx
|
|
197
|
+
});
|
|
198
|
+
var feature = {
|
|
199
|
+
type: "Feature",
|
|
200
|
+
geometry: {
|
|
201
|
+
type: "Point",
|
|
202
|
+
coordinates: point
|
|
203
|
+
}
|
|
204
|
+
};
|
|
205
|
+
var sellayer = {
|
|
206
|
+
id: "numericinputselection",
|
|
207
|
+
role: LayerRole.SELECTION
|
|
208
|
+
};
|
|
209
|
+
_this.props.addLayerFeatures(sellayer, [feature], true);
|
|
210
|
+
});
|
|
211
|
+
_defineProperty(_this, "clearListCoordinateHighlight", function (idx) {
|
|
212
|
+
if (_this.state.highlightedNode === idx) {
|
|
213
|
+
_this.setState({
|
|
214
|
+
highlightedNode: null
|
|
215
|
+
});
|
|
216
|
+
_this.props.removeLayer("numericinputselection");
|
|
217
|
+
}
|
|
218
|
+
});
|
|
219
|
+
_defineProperty(_this, "renderCircleInputForm", function () {
|
|
220
|
+
var circleParams = _this.state.feature.circleParams;
|
|
221
|
+
var center = CoordinatesUtils.reproject(circleParams.center, _this.props.mapCrs, _this.state.displayCrs);
|
|
222
|
+
return /*#__PURE__*/React.createElement("table", null, /*#__PURE__*/React.createElement("tbody", null, /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, "x:\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderOrdinateInput(center[0], function (value) {
|
|
223
|
+
return _this.updateCircle(value, center[1], circleParams.radius);
|
|
224
|
+
}))), /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, "y:\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderOrdinateInput(center[1], function (value) {
|
|
225
|
+
return _this.updateCircle(center[0], value, circleParams.radius);
|
|
226
|
+
}))), /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, "r:\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderMeasureInput(circleParams.radius, function (value) {
|
|
227
|
+
return _this.updateCircle(center[0], center[1], value);
|
|
228
|
+
})))));
|
|
229
|
+
});
|
|
230
|
+
_defineProperty(_this, "updateCircle", function (x, y, r) {
|
|
231
|
+
var center = CoordinatesUtils.reproject([x, y], _this.state.displayCrs, _this.props.mapCrs);
|
|
232
|
+
var newFeature = _objectSpread(_objectSpread({}, _this.state.feature), {}, {
|
|
233
|
+
circleParams: {
|
|
234
|
+
center: center,
|
|
235
|
+
radius: r
|
|
236
|
+
}
|
|
237
|
+
});
|
|
238
|
+
_this.props.onFeatureChanged(newFeature);
|
|
239
|
+
});
|
|
240
|
+
_defineProperty(_this, "renderBoxInputForm", function () {
|
|
241
|
+
var shape = _this.state.feature.shape;
|
|
242
|
+
var coordinates = _this.state.geometry.coordinates[0];
|
|
243
|
+
var x = 0.5 * (coordinates[0][0] + coordinates[2][0]);
|
|
244
|
+
var y = 0.5 * (coordinates[0][1] + coordinates[2][1]);
|
|
245
|
+
var d1x = Math.abs(coordinates[1][0] - coordinates[0][0]);
|
|
246
|
+
var d1y = Math.abs(coordinates[1][1] - coordinates[0][1]);
|
|
247
|
+
var w = Math.sqrt(d1x * d1x + d1y * d1y);
|
|
248
|
+
var r = Math.atan2(d1y / w, d1x / w) / Math.PI * 180;
|
|
249
|
+
var d2x = 0;
|
|
250
|
+
var d2y = 0;
|
|
251
|
+
var h = w;
|
|
252
|
+
if (shape === "Box") {
|
|
253
|
+
d2x = Math.abs(coordinates[2][0] - coordinates[1][0]);
|
|
254
|
+
d2y = Math.abs(coordinates[2][1] - coordinates[1][1]);
|
|
255
|
+
h = Math.sqrt(d2x * d2x + d2y * d2y);
|
|
256
|
+
}
|
|
257
|
+
return /*#__PURE__*/React.createElement("table", null, /*#__PURE__*/React.createElement("tbody", null, /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, "x:\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderOrdinateInput(x, function (value) {
|
|
258
|
+
return _this.updateBox(value, y, w, h, r);
|
|
259
|
+
}))), /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, "y:\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderOrdinateInput(y, function (value) {
|
|
260
|
+
return _this.updateBox(x, value, w, h, r);
|
|
261
|
+
}))), shape === "Box" ? [/*#__PURE__*/React.createElement("tr", {
|
|
262
|
+
key: "w"
|
|
263
|
+
}, /*#__PURE__*/React.createElement("td", null, LocaleUtils.tr("numericinput.width"), ":\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderMeasureInput(w, function (value) {
|
|
264
|
+
return _this.updateBox(x, y, value, h, r);
|
|
265
|
+
}))), /*#__PURE__*/React.createElement("tr", {
|
|
266
|
+
key: "h"
|
|
267
|
+
}, /*#__PURE__*/React.createElement("td", null, LocaleUtils.tr("numericinput.height"), ":\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderMeasureInput(h, function (value) {
|
|
268
|
+
return _this.updateBox(x, y, w, value, r);
|
|
269
|
+
})))] : /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, LocaleUtils.tr("numericinput.side"), ":\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderMeasureInput(w, function (value) {
|
|
270
|
+
return _this.updateBox(x, y, value, value, r);
|
|
271
|
+
}))), /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, LocaleUtils.tr("numericinput.angle"), ":\xA0"), /*#__PURE__*/React.createElement("td", null, _this.renderMeasureInput(r, function (value) {
|
|
272
|
+
return _this.updateBox(x, y, w, h, value);
|
|
273
|
+
}, 1)))));
|
|
274
|
+
});
|
|
275
|
+
_defineProperty(_this, "updateBox", function (x, y, w, h, r) {
|
|
276
|
+
var alpha = r / 180 * Math.PI;
|
|
277
|
+
var w2 = 0.5 * w;
|
|
278
|
+
var h2 = 0.5 * h;
|
|
279
|
+
var cosa = Math.cos(alpha);
|
|
280
|
+
var sina = Math.sin(alpha);
|
|
281
|
+
var newCoordinates = [[[x + cosa * w2 - sina * h2, y + sina * w2 + cosa * h2], [x - cosa * w2 - sina * h2, y - sina * w2 + cosa * h2], [x - cosa * w2 + sina * h2, y - sina * w2 - cosa * h2], [x + cosa * w2 + sina * h2, y + sina * w2 - cosa * h2], [x + cosa * w2 - sina * h2, y + sina * w2 + cosa * h2]]];
|
|
282
|
+
_this.coordinatesChanged(newCoordinates);
|
|
283
|
+
});
|
|
284
|
+
return _this;
|
|
285
|
+
}
|
|
286
|
+
_inherits(NumericInputWindow, _React$Component);
|
|
287
|
+
return _createClass(NumericInputWindow, [{
|
|
288
|
+
key: "componentDidMount",
|
|
289
|
+
value: function componentDidMount() {
|
|
290
|
+
this.componentDidUpdate({});
|
|
291
|
+
}
|
|
292
|
+
}, {
|
|
293
|
+
key: "componentDidUpdate",
|
|
294
|
+
value: function componentDidUpdate(prevProps) {
|
|
295
|
+
var _this$props$feature, _prevProps$feature;
|
|
296
|
+
if (prevProps.feature && ((_this$props$feature = this.props.feature) === null || _this$props$feature === void 0 ? void 0 : _this$props$feature.id) !== ((_prevProps$feature = prevProps.feature) === null || _prevProps$feature === void 0 ? void 0 : _prevProps$feature.id)) {
|
|
297
|
+
this.props.removeLayer("numericinputselection");
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}, {
|
|
301
|
+
key: "render",
|
|
302
|
+
value: function render() {
|
|
303
|
+
var shapeInputForms = {
|
|
304
|
+
Point: this.renderPointInputForm,
|
|
305
|
+
LineString: this.renderCoordinateListInputForm,
|
|
306
|
+
Polygon: this.renderCoordinateListInputForm,
|
|
307
|
+
Circle: this.renderCircleInputForm,
|
|
308
|
+
Box: this.renderBoxInputForm,
|
|
309
|
+
Square: this.renderBoxInputForm
|
|
310
|
+
};
|
|
311
|
+
var body = null;
|
|
312
|
+
if (!this.state.geometry) {
|
|
313
|
+
body = /*#__PURE__*/React.createElement("span", null, LocaleUtils.tr("numericinput.nofeature"));
|
|
314
|
+
} else if (shapeInputForms[this.state.feature.shape]) {
|
|
315
|
+
body = shapeInputForms[this.state.feature.shape]();
|
|
316
|
+
} else {
|
|
317
|
+
body = LocaleUtils.tr("numericinput.featureunsupported");
|
|
318
|
+
}
|
|
319
|
+
return /*#__PURE__*/React.createElement(ResizeableWindow, {
|
|
320
|
+
fitHeight: true,
|
|
321
|
+
icon: "numericinput",
|
|
322
|
+
initialWidth: 320,
|
|
323
|
+
onClose: this.props.onClose,
|
|
324
|
+
scrollable: true,
|
|
325
|
+
title: LocaleUtils.tr("numericinput.windowtitle")
|
|
326
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
327
|
+
className: "numeric-input-widget-body",
|
|
328
|
+
role: "body"
|
|
329
|
+
}, body));
|
|
330
|
+
}
|
|
331
|
+
}], [{
|
|
332
|
+
key: "getDerivedStateFromProps",
|
|
333
|
+
value: function getDerivedStateFromProps(nextProps, state) {
|
|
334
|
+
var newState = {
|
|
335
|
+
feature: nextProps.feature,
|
|
336
|
+
displayCrs: nextProps.displayCrs
|
|
337
|
+
};
|
|
338
|
+
if (state.feature && !nextProps.feature) {
|
|
339
|
+
newState.geometry = null;
|
|
340
|
+
} else if (nextProps.feature && (nextProps.feature !== state.feature || nextProps.displayCrs !== state.displayCrs)) {
|
|
341
|
+
newState.geometry = VectorLayerUtils.reprojectGeometry(nextProps.feature.geometry, nextProps.mapCrs, nextProps.displayCrs);
|
|
342
|
+
}
|
|
343
|
+
return newState;
|
|
344
|
+
}
|
|
345
|
+
}]);
|
|
346
|
+
}(React.Component);
|
|
347
|
+
_defineProperty(NumericInputWindow, "propTypes", {
|
|
348
|
+
addLayerFeatures: PropTypes.func,
|
|
349
|
+
displayCrs: PropTypes.string,
|
|
350
|
+
feature: PropTypes.object,
|
|
351
|
+
mapCrs: PropTypes.string,
|
|
352
|
+
onClose: PropTypes.func,
|
|
353
|
+
onFeatureChanged: PropTypes.func,
|
|
354
|
+
removeLayer: PropTypes.func
|
|
355
|
+
});
|
|
356
|
+
export default connect(function (state) {
|
|
357
|
+
return {
|
|
358
|
+
displayCrs: state.map.displayCrs,
|
|
359
|
+
mapCrs: state.map.projection
|
|
360
|
+
};
|
|
361
|
+
}, {
|
|
362
|
+
addLayerFeatures: addLayerFeatures,
|
|
363
|
+
removeLayer: removeLayer
|
|
364
|
+
})(NumericInputWindow);
|