qwc2 2026.4.13 → 2026.4.21
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/theme.js +6 -5
- package/components/IdentifyViewer.js +5 -0
- package/components/QtDesignerForm.js +13 -3
- package/components/StandardApp.js +3 -7
- package/components/style/DefaultColorScheme.css +2 -0
- package/components/style/PluginsContainer.css +3 -7
- package/package.json +2 -2
- package/plugins/API.js +23 -0
- package/plugins/Editing.js +15 -4
- package/plugins/Print.js +27 -10
- package/plugins/SensorThingsTool.js +2 -2
- package/plugins/style/Authentication.css +4 -0
- package/plugins/style/ThemeSwitcher.css +4 -0
- package/scripts/makeIconkit.js +6 -8
- package/static/translations/bg-BG.json +1 -3
- package/static/translations/ca-ES.json +1 -3
- package/static/translations/cs-CZ.json +1 -3
- package/static/translations/de-CH.json +3 -5
- package/static/translations/de-DE.json +3 -5
- package/static/translations/en-US.json +2 -4
- package/static/translations/es-ES.json +1 -3
- package/static/translations/fi-FI.json +1 -3
- package/static/translations/fr-FR.json +89 -91
- package/static/translations/hu-HU.json +1 -3
- package/static/translations/it-IT.json +92 -94
- package/static/translations/ja-JP.json +1 -3
- package/static/translations/nl-NL.json +1 -3
- package/static/translations/no-NO.json +1 -3
- package/static/translations/pl-PL.json +1 -3
- package/static/translations/pt-BR.json +1 -3
- package/static/translations/pt-PT.json +1 -3
- package/static/translations/ro-RO.json +1 -3
- package/static/translations/ru-RU.json +1 -3
- package/static/translations/sv-SE.json +1 -3
- package/static/translations/tr-TR.json +1 -3
- package/static/translations/tsconfig.json +0 -2
- package/static/translations/uk-UA.json +1 -3
- package/utils/PermaLinkUtils.js +1 -1
- package/components/style/DefaultStyleScheme.css +0 -4
package/actions/theme.js
CHANGED
|
@@ -52,7 +52,7 @@ export function setThemeLayersList(theme) {
|
|
|
52
52
|
themelist: theme
|
|
53
53
|
};
|
|
54
54
|
}
|
|
55
|
-
export function finishThemeSetup(dispatch, theme, themes, layerConfigs, insertPos, permalinkLayers, externalLayerRestorer, visibleBgLayer, initialTheme) {
|
|
55
|
+
export function finishThemeSetup(dispatch, theme, themes, layerConfigs, insertPos, permalinkLayers, externalLayerRestorer, visibleBgLayer, initialTheme, initialTask) {
|
|
56
56
|
var _theme$config;
|
|
57
57
|
// Create layer
|
|
58
58
|
var themeLayer = ThemeUtils.createThemeLayer(theme, themes);
|
|
@@ -148,10 +148,10 @@ export function finishThemeSetup(dispatch, theme, themes, layerConfigs, insertPo
|
|
|
148
148
|
type: SWITCHING_THEME,
|
|
149
149
|
switching: false
|
|
150
150
|
});
|
|
151
|
-
var task = (_theme$config = theme.config) === null || _theme$config === void 0 ? void 0 : _theme$config.startupTask;
|
|
151
|
+
var task = initialTask || (theme === null || theme === void 0 || (_theme$config = theme.config) === null || _theme$config === void 0 ? void 0 : _theme$config.startupTask) || (initialTheme ? ConfigUtils.getConfigProp("startupTask") : null);
|
|
152
152
|
if (task) {
|
|
153
153
|
var mapClickAction = ConfigUtils.getPluginConfig(task.key).mapClickAction;
|
|
154
|
-
dispatch(setCurrentTask(task.key, task.mode, mapClickAction));
|
|
154
|
+
dispatch(setCurrentTask(task.key, task.mode, mapClickAction, task.data));
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
export function setCurrentTheme(theme, themes) {
|
|
@@ -162,6 +162,7 @@ export function setCurrentTheme(theme, themes) {
|
|
|
162
162
|
var permalinkLayers = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : null;
|
|
163
163
|
var themeLayerRestorer = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : null;
|
|
164
164
|
var externalLayerRestorer = arguments.length > 8 && arguments[8] !== undefined ? arguments[8] : null;
|
|
165
|
+
var initialTask = arguments.length > 9 && arguments[9] !== undefined ? arguments[9] : null;
|
|
165
166
|
return function (dispatch, getState) {
|
|
166
167
|
var _getState$layers, _ref, _theme$mapTips;
|
|
167
168
|
var curLayers = ((_getState$layers = getState().layers) === null || _getState$layers === void 0 ? void 0 : _getState$layers.flat) || [];
|
|
@@ -318,13 +319,13 @@ export function setCurrentTheme(theme, themes) {
|
|
|
318
319
|
dispatch(showNotification("missinglayers", LocaleUtils.tr("app.missinglayers", diff.join(", ")), NotificationType.WARN, true));
|
|
319
320
|
}
|
|
320
321
|
}
|
|
321
|
-
finishThemeSetup(dispatch, newTheme, themes, layerConfigs, insertPos, permalinkLayers, externalLayerRestorer, visibleBgLayer, initialTheme);
|
|
322
|
+
finishThemeSetup(dispatch, newTheme, themes, layerConfigs, insertPos, permalinkLayers, externalLayerRestorer, visibleBgLayer, initialTheme, initialTask);
|
|
322
323
|
});
|
|
323
324
|
} else {
|
|
324
325
|
if (!isEmpty(missingThemeLayers)) {
|
|
325
326
|
dispatch(showNotification("missinglayers", LocaleUtils.tr("app.missinglayers", Object.keys(missingThemeLayers).join(", ")), NotificationType.WARN, true));
|
|
326
327
|
}
|
|
327
|
-
finishThemeSetup(dispatch, theme, themes, layerConfigs, insertPos, permalinkLayers, externalLayerRestorer, visibleBgLayer, initialTheme);
|
|
328
|
+
finishThemeSetup(dispatch, theme, themes, layerConfigs, insertPos, permalinkLayers, externalLayerRestorer, visibleBgLayer, initialTheme, initialTask);
|
|
328
329
|
}
|
|
329
330
|
};
|
|
330
331
|
}
|
|
@@ -1151,6 +1151,11 @@ var IdentifyViewer = /*#__PURE__*/function (_React$Component) {
|
|
|
1151
1151
|
}));
|
|
1152
1152
|
}
|
|
1153
1153
|
text = "" + text; // Ensure text is a string
|
|
1154
|
+
for (var _i = 0, _Object$values = Object.values(((_window$qwc3 = window.qwc2) === null || _window$qwc3 === void 0 ? void 0 : _window$qwc3.__attributeFormatters) || {}); _i < _Object$values.length; _i++) {
|
|
1155
|
+
var _window$qwc3;
|
|
1156
|
+
var formatter = _Object$values[_i];
|
|
1157
|
+
text = formatter(attrName, text, layer, result);
|
|
1158
|
+
}
|
|
1154
1159
|
text = _this.props.attributeTransform(attrName, text, layer, result);
|
|
1155
1160
|
text = MiscUtils.addLinkAnchors(text);
|
|
1156
1161
|
return _this.parsedContent(text);
|
|
@@ -254,6 +254,10 @@ var QtDesignerForm = /*#__PURE__*/function (_React$Component) {
|
|
|
254
254
|
fontSize: Math.round((fontProps.pointsize || 9) / 9 * 100) + "%",
|
|
255
255
|
textAlign: 'left'
|
|
256
256
|
};
|
|
257
|
+
var frameStyle = {};
|
|
258
|
+
if (prop.flat) {
|
|
259
|
+
frameStyle.border = '0';
|
|
260
|
+
}
|
|
257
261
|
if (prop.alignment) {
|
|
258
262
|
if (prop.alignment.includes("Qt::AlignRight")) {
|
|
259
263
|
fontStyle.textAlign = 'right';
|
|
@@ -312,7 +316,8 @@ var QtDesignerForm = /*#__PURE__*/function (_React$Component) {
|
|
|
312
316
|
return /*#__PURE__*/React.createElement("div", {
|
|
313
317
|
className: "qt-designer-form-container"
|
|
314
318
|
}, /*#__PURE__*/React.createElement("div", {
|
|
315
|
-
className: "qt-designer-form-frame"
|
|
319
|
+
className: "qt-designer-form-frame",
|
|
320
|
+
style: frameStyle
|
|
316
321
|
}, widget.name.startsWith("nrel__") ? _this.renderNRelation(widget) : _this.renderLayout(widget.layout, feature, editConfig, updateField, nametransform)));
|
|
317
322
|
} else if (widget["class"] === "QGroupBox") {
|
|
318
323
|
if (widget.property.visibilityExpression) {
|
|
@@ -331,10 +336,14 @@ var QtDesignerForm = /*#__PURE__*/function (_React$Component) {
|
|
|
331
336
|
className: "qt-designer-form-frame-title",
|
|
332
337
|
style: fontStyle
|
|
333
338
|
}, _this.translateFormString(prop.title, editConfig.layerName)), /*#__PURE__*/React.createElement("div", {
|
|
334
|
-
className: "qt-designer-form-frame"
|
|
339
|
+
className: "qt-designer-form-frame",
|
|
340
|
+
style: frameStyle
|
|
335
341
|
}, widget.name.startsWith("nrel__") ? _this.renderNRelation(widget) : _this.renderLayout(widget.layout, feature, editConfig, updateField, nametransform)));
|
|
336
342
|
} else if (widget["class"] === "QTabWidget") {
|
|
337
343
|
var tabwidgets = (widget.widget || []).filter(function (child) {
|
|
344
|
+
if (!child.property.visibilityExpression) {
|
|
345
|
+
return true;
|
|
346
|
+
}
|
|
338
347
|
var exprResult = parseExpression(child.property.visibilityExpression, feature, editConfig, _this.props.iface, _this.props.mapPrefix, _this.props.mapCrs, function () {
|
|
339
348
|
return _this.setState({
|
|
340
349
|
reevaluate: +new Date()
|
|
@@ -366,7 +375,8 @@ var QtDesignerForm = /*#__PURE__*/function (_React$Component) {
|
|
|
366
375
|
});
|
|
367
376
|
}
|
|
368
377
|
}), /*#__PURE__*/React.createElement("div", {
|
|
369
|
-
className: "qt-designer-form-frame"
|
|
378
|
+
className: "qt-designer-form-frame qt-designer-form-tab",
|
|
379
|
+
style: frameStyle
|
|
370
380
|
}, tabwidgets.filter(function (child) {
|
|
371
381
|
return child.layout;
|
|
372
382
|
}).map(function (child) {
|
|
@@ -92,7 +92,7 @@ var AppContainerComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
92
92
|
lang: _this.props.locale
|
|
93
93
|
}
|
|
94
94
|
}).then(function (response) {
|
|
95
|
-
var _this$props$appConfig, _this$props$appConfig2
|
|
95
|
+
var _this$props$appConfig, _this$props$appConfig2;
|
|
96
96
|
var themes = response.data.themes || {};
|
|
97
97
|
(_this$props$appConfig = (_this$props$appConfig2 = _this.props.appConfig).themePreprocessor) === null || _this$props$appConfig === void 0 || _this$props$appConfig.call(_this$props$appConfig2, themes);
|
|
98
98
|
_this.props.themesLoaded(themes);
|
|
@@ -162,15 +162,11 @@ var AppContainerComponent = /*#__PURE__*/function (_React$Component) {
|
|
|
162
162
|
if (layerParams && ConfigUtils.getConfigProp("urlReverseLayerOrder")) {
|
|
163
163
|
layerParams.reverse();
|
|
164
164
|
}
|
|
165
|
-
|
|
165
|
+
var initialTaskParam = params.task ? JSON.parse(decodeURIComponent(params.task)) : null;
|
|
166
|
+
_this.props.setCurrentTheme(theme, themes, false, initialExtent, layerParams, (_params$bl = params.bl) !== null && _params$bl !== void 0 ? _params$bl : null, state.layers, _this.props.appConfig.themeLayerRestorer, _this.props.appConfig.externalLayerRestorer, initialTaskParam);
|
|
166
167
|
} else if (!ConfigUtils.havePlugin("Portal")) {
|
|
167
168
|
_this.props.showNotification("missingdefaulttheme", LocaleUtils.tr("app.missingdefaulttheme", params.t), NotificationType.WARN, true);
|
|
168
169
|
}
|
|
169
|
-
var task = ConfigUtils.getConfigProp("startupTask");
|
|
170
|
-
if (task && !((_theme = theme) !== null && _theme !== void 0 && (_theme = _theme.config) !== null && _theme !== void 0 && _theme.startupTask)) {
|
|
171
|
-
var mapClickAction = ConfigUtils.getPluginConfig(task.key).mapClickAction;
|
|
172
|
-
_this.props.setCurrentTask(task.key, task.mode, mapClickAction);
|
|
173
|
-
}
|
|
174
170
|
});
|
|
175
171
|
});
|
|
176
172
|
_this.themesLoaded = false;
|
|
@@ -21,7 +21,7 @@ div.app-infos-container {
|
|
|
21
21
|
flex-wrap: wrap-reverse;
|
|
22
22
|
z-index: 2;
|
|
23
23
|
overflow: hidden;
|
|
24
|
-
padding:
|
|
24
|
+
padding: .5em .5em 2.5em .5em;
|
|
25
25
|
row-gap: 0.25em;
|
|
26
26
|
}
|
|
27
27
|
|
|
@@ -58,13 +58,9 @@ div.app-info {
|
|
|
58
58
|
color: var(--panel-text-color);
|
|
59
59
|
background-color: var(--panel-bg-color);
|
|
60
60
|
box-shadow: 0 0 4px rgba(136, 136, 136, 0.5);
|
|
61
|
-
padding: 0.25em
|
|
61
|
+
padding: 0.25em;
|
|
62
62
|
display: flex;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
div.app-info > span {
|
|
66
|
-
flex: 0 0 auto;
|
|
67
|
-
padding: 0 0.25em;
|
|
63
|
+
align-items: center;
|
|
68
64
|
}
|
|
69
65
|
|
|
70
66
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qwc2",
|
|
3
|
-
"version": "2026.04.
|
|
3
|
+
"version": "2026.04.21",
|
|
4
4
|
"description": "QGIS Web Client",
|
|
5
5
|
"author": "Sourcepole AG",
|
|
6
6
|
"license": "BSD-2-Clause",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@furkot/webfonts-generator": "^2.0.3",
|
|
20
|
-
"@giro3d/giro3d": "^2.0.
|
|
20
|
+
"@giro3d/giro3d": "^2.0.1",
|
|
21
21
|
"@kayahr/text-encoding": "^2.1.0",
|
|
22
22
|
"@loaders.gl/core": "^4.3.4",
|
|
23
23
|
"@loaders.gl/shapefile": "^4.3.4",
|
package/plugins/API.js
CHANGED
|
@@ -394,6 +394,26 @@ var API = /*#__PURE__*/function (_React$Component) {
|
|
|
394
394
|
_defineProperty(_this, "removeIdentifyAttributeCalculator", function (name) {
|
|
395
395
|
delete window.qwc2.__attributeCalculators[name];
|
|
396
396
|
});
|
|
397
|
+
/**
|
|
398
|
+
* Add custom attribute formatter
|
|
399
|
+
* (i.e. computed attributes which are added to GetFeatureInfo responses).
|
|
400
|
+
*
|
|
401
|
+
* * `name`: An identifier
|
|
402
|
+
* * `fmtFunc`: The formatter function with signature `function(name, value, layer, feature)`
|
|
403
|
+
*
|
|
404
|
+
* The `fmtFunc` should return a string (which may also be a HTML fragment).
|
|
405
|
+
*/
|
|
406
|
+
_defineProperty(_this, "addIdentifyAttributeFormatter", function (name, fmtFunc) {
|
|
407
|
+
window.qwc2.__attributeFormatters[name] = fmtFunc;
|
|
408
|
+
});
|
|
409
|
+
/**
|
|
410
|
+
* Remove custom identify attribute formatter
|
|
411
|
+
*
|
|
412
|
+
* * `name`: The identifier
|
|
413
|
+
*/
|
|
414
|
+
_defineProperty(_this, "removeIdentifyAttributeFormatter", function (name) {
|
|
415
|
+
delete window.qwc2.__attributeFormatters[name];
|
|
416
|
+
});
|
|
397
417
|
/**
|
|
398
418
|
* Add custom identify exporter
|
|
399
419
|
*
|
|
@@ -521,6 +541,7 @@ var API = /*#__PURE__*/function (_React$Component) {
|
|
|
521
541
|
window.qwc2 = {
|
|
522
542
|
__customPlugins: {},
|
|
523
543
|
__attributeCalculators: {},
|
|
544
|
+
__attributeFormatters: {},
|
|
524
545
|
__identifyExportes: {}
|
|
525
546
|
};
|
|
526
547
|
// Auto-binded functions
|
|
@@ -538,6 +559,8 @@ var API = /*#__PURE__*/function (_React$Component) {
|
|
|
538
559
|
window.qwc2.removeIdentifyAttributeCalculator = this.removeIdentifyAttributeCalculator;
|
|
539
560
|
window.qwc2.addIdentifyExporter = this.addIdentifyExporter;
|
|
540
561
|
window.qwc2.removeIdentifyExporter = this.removeIdentifyExporter;
|
|
562
|
+
window.qwc2.addIdentifyAttributeFormatter = this.addIdentifyAttributeFormatter;
|
|
563
|
+
window.qwc2.removeIdentifyAttributeFormatter = this.removeIdentifyAttributeFormatter;
|
|
541
564
|
window.qwc2.addExternalLayer = this.addExternalLayer;
|
|
542
565
|
window.qwc2.drawScratch = this.drawScratch;
|
|
543
566
|
window.qwc2.drawGeometry = this.drawGeometry;
|
package/plugins/Editing.js
CHANGED
|
@@ -641,6 +641,17 @@ var Editing = /*#__PURE__*/function (_React$Component) {
|
|
|
641
641
|
selectedLayer: null
|
|
642
642
|
});
|
|
643
643
|
}
|
|
644
|
+
} else if (this.props.taskData && this.props.taskData !== prevProps.taskData) {
|
|
645
|
+
if (this.props.taskData.feature) {
|
|
646
|
+
var _this$props$taskData$ = this.props.taskData.layer.split("#"),
|
|
647
|
+
_this$props$taskData$2 = _slicedToArray(_this$props$taskData$, 2),
|
|
648
|
+
_wmsName = _this$props$taskData$2[0],
|
|
649
|
+
_layerName = _this$props$taskData$2[1];
|
|
650
|
+
var editConfig = this.props.editConfigs[_wmsName][_layerName];
|
|
651
|
+
this.props.iface.getFeatureById(editConfig, this.props.taskData.feature, this.props.map.projection, function (feature) {
|
|
652
|
+
_this2.changeSelectedLayer(_this2.props.taskData.layer, feature || _this2.props.taskData.feature);
|
|
653
|
+
});
|
|
654
|
+
} else this.changeSelectedLayer(this.props.taskData.layer);
|
|
644
655
|
}
|
|
645
656
|
// If click point changed and in pick mode with a selected layer, trigger a pick
|
|
646
657
|
var isCurrentContext = this.props.editContext.id === this.props.currentEditContext;
|
|
@@ -652,10 +663,10 @@ var Editing = /*#__PURE__*/function (_React$Component) {
|
|
|
652
663
|
var scale = Math.round(MapUtils.computeForZoom(this.props.map.scales, this.props.map.zoom));
|
|
653
664
|
var _this$state$selectedL3 = this.state.selectedLayer.split("#"),
|
|
654
665
|
_this$state$selectedL4 = _slicedToArray(_this$state$selectedL3, 2),
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
var
|
|
658
|
-
this.props.iface.getFeature(
|
|
666
|
+
_wmsName2 = _this$state$selectedL4[0],
|
|
667
|
+
_layerName2 = _this$state$selectedL4[1];
|
|
668
|
+
var _editConfig = this.props.editConfigs[_wmsName2][_layerName2];
|
|
669
|
+
this.props.iface.getFeature(_editConfig, newPoint.coordinate, this.props.map.projection, scale, 96, function (featureCollection) {
|
|
659
670
|
var features = featureCollection ? featureCollection.features : null;
|
|
660
671
|
_this2.setState({
|
|
661
672
|
pickedFeatures: features
|
package/plugins/Print.js
CHANGED
|
@@ -668,6 +668,7 @@ var Print = /*#__PURE__*/function (_React$Component) {
|
|
|
668
668
|
});
|
|
669
669
|
});
|
|
670
670
|
_defineProperty(_this, "print", function (ev) {
|
|
671
|
+
var _this$props$theme$vis;
|
|
671
672
|
ev.preventDefault();
|
|
672
673
|
_this.setState({
|
|
673
674
|
printing: true
|
|
@@ -696,6 +697,22 @@ var Print = /*#__PURE__*/function (_React$Component) {
|
|
|
696
697
|
formData[mapName + ":STYLES"] = printParams.STYLES;
|
|
697
698
|
formData[mapName + ":FILTER"] = printParams.FILTER;
|
|
698
699
|
formData[mapName + ":FILTER_GEOM"] = printParams.FILTER_GEOM;
|
|
700
|
+
if (_this.state.layout.map.followPresetName in ((_this$props$theme$vis = _this.props.theme.visibilityPresets) !== null && _this$props$theme$vis !== void 0 ? _this$props$theme$vis : {})) {
|
|
701
|
+
var preset = _this.props.theme.visibilityPresets[_this.state.layout.map.followPresetName];
|
|
702
|
+
var layers = [];
|
|
703
|
+
var styles = [];
|
|
704
|
+
Object.entries(preset).forEach(function (_ref5) {
|
|
705
|
+
var _ref6 = _slicedToArray(_ref5, 2),
|
|
706
|
+
layerPath = _ref6[0],
|
|
707
|
+
style = _ref6[1];
|
|
708
|
+
if (style) {
|
|
709
|
+
layers.push(layerPath.split("/").slice(-1)[0]);
|
|
710
|
+
styles.push(style);
|
|
711
|
+
}
|
|
712
|
+
});
|
|
713
|
+
formData[mapName + ":LAYERS"] = layers.join(",");
|
|
714
|
+
formData[mapName + ":STYLES"] = styles.join(",");
|
|
715
|
+
}
|
|
699
716
|
|
|
700
717
|
// Add highlight params
|
|
701
718
|
var printDpi = parseInt(_this.state.dpi, 10) || 0;
|
|
@@ -732,10 +749,10 @@ var Print = /*#__PURE__*/function (_React$Component) {
|
|
|
732
749
|
// Add dimension values
|
|
733
750
|
_this.props.layers.forEach(function (layer) {
|
|
734
751
|
if (layer.role === LayerRole.THEME) {
|
|
735
|
-
Object.entries(layer.dimensionValues || {}).forEach(function (
|
|
736
|
-
var
|
|
737
|
-
key =
|
|
738
|
-
value =
|
|
752
|
+
Object.entries(layer.dimensionValues || {}).forEach(function (_ref7) {
|
|
753
|
+
var _ref8 = _slicedToArray(_ref7, 2),
|
|
754
|
+
key = _ref8[0],
|
|
755
|
+
value = _ref8[1];
|
|
739
756
|
if (value !== undefined) {
|
|
740
757
|
formData[key] = value;
|
|
741
758
|
}
|
|
@@ -747,10 +764,10 @@ var Print = /*#__PURE__*/function (_React$Component) {
|
|
|
747
764
|
var extraOptions = Object.fromEntries((_this.props.theme.extraPrintParameters || "").split("&").filter(Boolean).map(function (entry) {
|
|
748
765
|
return entry.split("=");
|
|
749
766
|
}));
|
|
750
|
-
Object.entries(extraOptions).forEach(function (
|
|
751
|
-
var
|
|
752
|
-
key =
|
|
753
|
-
value =
|
|
767
|
+
Object.entries(extraOptions).forEach(function (_ref9) {
|
|
768
|
+
var _ref0 = _slicedToArray(_ref9, 2),
|
|
769
|
+
key = _ref0[0],
|
|
770
|
+
value = _ref0[1];
|
|
754
771
|
formData[key] = value;
|
|
755
772
|
});
|
|
756
773
|
var pages = [formData];
|
|
@@ -784,8 +801,8 @@ var Print = /*#__PURE__*/function (_React$Component) {
|
|
|
784
801
|
});
|
|
785
802
|
});
|
|
786
803
|
_defineProperty(_this, "translateLayoutName", function (item) {
|
|
787
|
-
var
|
|
788
|
-
return (
|
|
804
|
+
var _ref1, _ref10, _this$props$theme$tra, _this$props$theme$tra2, _this$props$theme$tra3;
|
|
805
|
+
return (_ref1 = (_ref10 = (_this$props$theme$tra = (_this$props$theme$tra2 = _this.props.theme.translations) === null || _this$props$theme$tra2 === void 0 || (_this$props$theme$tra2 = _this$props$theme$tra2.layouts) === null || _this$props$theme$tra2 === void 0 ? void 0 : _this$props$theme$tra2[item.title]) !== null && _this$props$theme$tra !== void 0 ? _this$props$theme$tra : (_this$props$theme$tra3 = _this.props.theme.translations) === null || _this$props$theme$tra3 === void 0 || (_this$props$theme$tra3 = _this$props$theme$tra3.layouts) === null || _this$props$theme$tra3 === void 0 ? void 0 : _this$props$theme$tra3[item.name]) !== null && _ref10 !== void 0 ? _ref10 : item.title) !== null && _ref1 !== void 0 ? _ref1 : item.name;
|
|
789
806
|
});
|
|
790
807
|
_this.printForm = null;
|
|
791
808
|
_this.state.grid = props.gridInitiallyEnabled;
|
|
@@ -897,13 +897,13 @@ var SensorThingsTool = /*#__PURE__*/function (_React$Component) {
|
|
|
897
897
|
}), /*#__PURE__*/React.createElement("button", {
|
|
898
898
|
className: "button",
|
|
899
899
|
onClick: _this.zoomIn,
|
|
900
|
-
title: LocaleUtils.tr("
|
|
900
|
+
title: LocaleUtils.tr("common.zoomin")
|
|
901
901
|
}, /*#__PURE__*/React.createElement(Icon, {
|
|
902
902
|
icon: "zoomin"
|
|
903
903
|
})), /*#__PURE__*/React.createElement("button", {
|
|
904
904
|
className: "button",
|
|
905
905
|
onClick: _this.zoomOut,
|
|
906
|
-
title: LocaleUtils.tr("
|
|
906
|
+
title: LocaleUtils.tr("common.zoomout")
|
|
907
907
|
}, /*#__PURE__*/React.createElement(Icon, {
|
|
908
908
|
icon: "zoomout"
|
|
909
909
|
})), /*#__PURE__*/React.createElement("button", {
|
package/scripts/makeIconkit.js
CHANGED
|
@@ -73,12 +73,10 @@ webfontsGenerator({
|
|
|
73
73
|
},
|
|
74
74
|
types: ['woff'],
|
|
75
75
|
fontHeight: 1000
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
console.log('Done!');
|
|
83
|
-
}
|
|
76
|
+
}).then(function () {
|
|
77
|
+
// eslint-disable-next-line
|
|
78
|
+
console.log('Done!');
|
|
79
|
+
})["catch"](function (e) {
|
|
80
|
+
// eslint-disable-next-line
|
|
81
|
+
console.log('Fail!', e);
|
|
84
82
|
});
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
"radius": "Radius"
|
|
337
337
|
},
|
|
338
338
|
"layercatalog": {
|
|
339
|
-
"openlink": "",
|
|
339
|
+
"openlink": "Link öffnen",
|
|
340
340
|
"windowtitle": "Ebenenkatalog"
|
|
341
341
|
},
|
|
342
342
|
"layerinfo": {
|
|
@@ -732,9 +732,7 @@
|
|
|
732
732
|
"arithmeticMean": "Arithmetisches Mittel",
|
|
733
733
|
"nthPercentile": ". Perzentil"
|
|
734
734
|
},
|
|
735
|
-
"title": "SensorThings Abfrage"
|
|
736
|
-
"zoomIn": "Vergrößern",
|
|
737
|
-
"zoomOut": "Verkleinern"
|
|
735
|
+
"title": "SensorThings Abfrage"
|
|
738
736
|
},
|
|
739
737
|
"serviceinfo": {
|
|
740
738
|
"abstract": "Zusammenfassung",
|
|
@@ -784,7 +782,7 @@
|
|
|
784
782
|
"sunexposure3d": {
|
|
785
783
|
"end": "Endzeit",
|
|
786
784
|
"hoursOfSunlight": "Sonnenstunden",
|
|
787
|
-
"includeterrain": "",
|
|
785
|
+
"includeterrain": "Terrain berechnen",
|
|
788
786
|
"irradiation": "Bestrahlung",
|
|
789
787
|
"meanIrradiance": "Mittlere Bestrahlungsstärke",
|
|
790
788
|
"spatialres": "Räumliche Auflösung",
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
"radius": "Radius"
|
|
337
337
|
},
|
|
338
338
|
"layercatalog": {
|
|
339
|
-
"openlink": "",
|
|
339
|
+
"openlink": "Link öffnen",
|
|
340
340
|
"windowtitle": "Ebenenkatalog"
|
|
341
341
|
},
|
|
342
342
|
"layerinfo": {
|
|
@@ -732,9 +732,7 @@
|
|
|
732
732
|
"arithmeticMean": "Arithmetisches Mittel",
|
|
733
733
|
"nthPercentile": ". Perzentil"
|
|
734
734
|
},
|
|
735
|
-
"title": "SensorThings Abfrage"
|
|
736
|
-
"zoomIn": "Vergrößern",
|
|
737
|
-
"zoomOut": "Verkleinern"
|
|
735
|
+
"title": "SensorThings Abfrage"
|
|
738
736
|
},
|
|
739
737
|
"serviceinfo": {
|
|
740
738
|
"abstract": "Zusammenfassung",
|
|
@@ -784,7 +782,7 @@
|
|
|
784
782
|
"sunexposure3d": {
|
|
785
783
|
"end": "Endzeit",
|
|
786
784
|
"hoursOfSunlight": "Sonnenstunden",
|
|
787
|
-
"includeterrain": "",
|
|
785
|
+
"includeterrain": "Terrain berechnen",
|
|
788
786
|
"irradiation": "Bestrahlung",
|
|
789
787
|
"meanIrradiance": "Mittlere Bestrahlungsstärke",
|
|
790
788
|
"spatialres": "Räumliche Auflösung",
|
|
@@ -732,9 +732,7 @@
|
|
|
732
732
|
"arithmeticMean": "Arithmetic mean",
|
|
733
733
|
"nthPercentile": "th percentile"
|
|
734
734
|
},
|
|
735
|
-
"title": "SensorThings Query"
|
|
736
|
-
"zoomIn": "Zoom in",
|
|
737
|
-
"zoomOut": "Zoom out"
|
|
735
|
+
"title": "SensorThings Query"
|
|
738
736
|
},
|
|
739
737
|
"serviceinfo": {
|
|
740
738
|
"abstract": "Abstract",
|
|
@@ -784,7 +782,7 @@
|
|
|
784
782
|
"sunexposure3d": {
|
|
785
783
|
"end": "End time",
|
|
786
784
|
"hoursOfSunlight": "Hours of sunlight",
|
|
787
|
-
"includeterrain": "",
|
|
785
|
+
"includeterrain": "Include terrain",
|
|
788
786
|
"irradiation": "Irradiation",
|
|
789
787
|
"meanIrradiance": "Mean irradiance",
|
|
790
788
|
"spatialres": "Spatial res.",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"Settings": "Paramètres",
|
|
33
33
|
"Settings3D": "Paramètres 3D",
|
|
34
34
|
"Share": "Partager",
|
|
35
|
-
"SunExposure3D": "",
|
|
35
|
+
"SunExposure3D": "Exposition au soleil",
|
|
36
36
|
"ThemeSwitcher": "Thèmes",
|
|
37
37
|
"AttributeTable": "Table d'attributs",
|
|
38
38
|
"AuthenticationLogin": "Connexion",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"PrintScreen3D": "Export raster",
|
|
61
61
|
"Redlining": "Dessiner",
|
|
62
62
|
"Routing": "Routage",
|
|
63
|
-
"SensorThingsTool": "",
|
|
63
|
+
"SensorThingsTool": "Outil SensorThings",
|
|
64
64
|
"Tools": "Outils",
|
|
65
65
|
"TourGuide": "Visite Guidée",
|
|
66
66
|
"TimeManager": "Ligne du temps",
|
|
@@ -121,8 +121,8 @@
|
|
|
121
121
|
"clear": "Réinitialiser",
|
|
122
122
|
"clone": "Copier",
|
|
123
123
|
"close": "Fermer",
|
|
124
|
-
"compute": "",
|
|
125
|
-
"date": "",
|
|
124
|
+
"compute": "Calculer",
|
|
125
|
+
"date": "Date",
|
|
126
126
|
"delete": "Effacer",
|
|
127
127
|
"download": "Télécharger",
|
|
128
128
|
"ellipse": "Ellipse",
|
|
@@ -642,99 +642,97 @@
|
|
|
642
642
|
"unknownmore": "Plus de résultats"
|
|
643
643
|
},
|
|
644
644
|
"sensorthingstool": {
|
|
645
|
-
"addDatastream": "",
|
|
645
|
+
"addDatastream": "Ajouter un flux de données au graphique",
|
|
646
646
|
"datastreamInfo": {
|
|
647
|
-
"calibration": "",
|
|
648
|
-
"description": "",
|
|
649
|
-
"location": "",
|
|
650
|
-
"name": "",
|
|
651
|
-
"observedProperty": "",
|
|
652
|
-
"sensor": "",
|
|
653
|
-
"thing": "",
|
|
654
|
-
"title": "",
|
|
655
|
-
"unit": ""
|
|
647
|
+
"calibration": "Calibration",
|
|
648
|
+
"description": "Description",
|
|
649
|
+
"location": "Emplacement",
|
|
650
|
+
"name": "Nom",
|
|
651
|
+
"observedProperty": "Propriété observée",
|
|
652
|
+
"sensor": "Capteur",
|
|
653
|
+
"thing": "Objet",
|
|
654
|
+
"title": "Informations sur le flux de données",
|
|
655
|
+
"unit": "Unité"
|
|
656
656
|
},
|
|
657
|
-
"datastreamLabel": "",
|
|
658
|
-
"datastreamNone": "",
|
|
657
|
+
"datastreamLabel": "Flux de données",
|
|
658
|
+
"datastreamNone": "Aucun résultat",
|
|
659
659
|
"datastreamOptions": {
|
|
660
|
-
"arithmeticMean": "",
|
|
661
|
-
"percentiles": "",
|
|
662
|
-
"percentilesDesc": "",
|
|
663
|
-
"showOnSecondYAxis": "",
|
|
664
|
-
"showPercentiles": "",
|
|
665
|
-
"title": ""
|
|
660
|
+
"arithmeticMean": "Moyenne arithmétique",
|
|
661
|
+
"percentiles": "Percentiles",
|
|
662
|
+
"percentilesDesc": "Entrez les percentiles sous forme de valeurs séparées par des virgules",
|
|
663
|
+
"showOnSecondYAxis": "Afficher sur l’axe Y secondaire",
|
|
664
|
+
"showPercentiles": "Afficher les percentiles",
|
|
665
|
+
"title": "Statistiques du flux de données"
|
|
666
666
|
},
|
|
667
667
|
"datastreamTable": {
|
|
668
|
-
"fullPeriod": "",
|
|
669
|
-
"selectedPeriod": "",
|
|
670
|
-
"timestamp": "",
|
|
671
|
-
"title": "",
|
|
672
|
-
"unit": "",
|
|
673
|
-
"value": ""
|
|
668
|
+
"fullPeriod": "Période disponible",
|
|
669
|
+
"selectedPeriod": "Période sélectionnée",
|
|
670
|
+
"timestamp": "Horodatage",
|
|
671
|
+
"title": "Tableau du flux de données",
|
|
672
|
+
"unit": "Unité",
|
|
673
|
+
"value": "Valeur"
|
|
674
674
|
},
|
|
675
675
|
"datastreamsFilter": {
|
|
676
|
-
"datastream": "",
|
|
677
|
-
"location": "",
|
|
678
|
-
"observedProperty": "",
|
|
679
|
-
"sensor": "",
|
|
680
|
-
"thing": "",
|
|
681
|
-
"title": ""
|
|
676
|
+
"datastream": "Flux de données",
|
|
677
|
+
"location": "Emplacement",
|
|
678
|
+
"observedProperty": "Propriété observée",
|
|
679
|
+
"sensor": "Capteur",
|
|
680
|
+
"thing": "Objet",
|
|
681
|
+
"title": "Filtre des flux de données"
|
|
682
682
|
},
|
|
683
|
-
"exportCSV": "",
|
|
684
|
-
"exportImage": "",
|
|
683
|
+
"exportCSV": "Exporter en CSV",
|
|
684
|
+
"exportImage": "Exporter en image",
|
|
685
685
|
"graphOptions": {
|
|
686
|
-
"reverseAxis": "",
|
|
687
|
-
"threshold": "",
|
|
688
|
-
"thresholdLabel": "",
|
|
689
|
-
"thresholdValue": "",
|
|
690
|
-
"title": "",
|
|
691
|
-
"toggleGridLines": "",
|
|
692
|
-
"toggleSecondYAxis": "",
|
|
693
|
-
"xAxis": "",
|
|
694
|
-
"xAxisAtTop": "",
|
|
695
|
-
"yAuto": "",
|
|
696
|
-
"yAxis": "",
|
|
697
|
-
"yMax": "",
|
|
698
|
-
"yMin": ""
|
|
686
|
+
"reverseAxis": "Inverser l’axe",
|
|
687
|
+
"threshold": "Seuil",
|
|
688
|
+
"thresholdLabel": "Étiquette",
|
|
689
|
+
"thresholdValue": "Valeur",
|
|
690
|
+
"title": "Paramètres",
|
|
691
|
+
"toggleGridLines": "Lignes de grille",
|
|
692
|
+
"toggleSecondYAxis": "Axe Y secondaire",
|
|
693
|
+
"xAxis": "Axe X",
|
|
694
|
+
"xAxisAtTop": "Position en haut",
|
|
695
|
+
"yAuto": "auto",
|
|
696
|
+
"yAxis": "Axe Y",
|
|
697
|
+
"yMax": "Limite supérieure",
|
|
698
|
+
"yMin": "Limite inférieure"
|
|
699
699
|
},
|
|
700
700
|
"intervalOptions": {
|
|
701
|
-
"custom": "",
|
|
702
|
-
"day": "",
|
|
703
|
-
"hour": "",
|
|
704
|
-
"month": "",
|
|
705
|
-
"week": "",
|
|
706
|
-
"year": ""
|
|
701
|
+
"custom": "Personnalisé",
|
|
702
|
+
"day": "Jour",
|
|
703
|
+
"hour": "Heure",
|
|
704
|
+
"month": "Mois",
|
|
705
|
+
"week": "Semaine",
|
|
706
|
+
"year": "Année"
|
|
707
707
|
},
|
|
708
708
|
"locationInfo": {
|
|
709
|
-
"description": "",
|
|
710
|
-
"inactive": "",
|
|
711
|
-
"name": "",
|
|
712
|
-
"platform": "",
|
|
713
|
-
"qompSensorId": "",
|
|
714
|
-
"serialNumber": "",
|
|
715
|
-
"title": ""
|
|
709
|
+
"description": "Description",
|
|
710
|
+
"inactive": "Inactif",
|
|
711
|
+
"name": "Nom",
|
|
712
|
+
"platform": "Plateforme",
|
|
713
|
+
"qompSensorId": "ID capteur QOMP",
|
|
714
|
+
"serialNumber": "Numéro de série",
|
|
715
|
+
"title": "Informations sur l’emplacement"
|
|
716
716
|
},
|
|
717
|
-
"locationLabel": "",
|
|
718
|
-
"pickLocation": "",
|
|
719
|
-
"pickLocationDesc": "",
|
|
720
|
-
"removeDatastream": "",
|
|
721
|
-
"removeLocation": "",
|
|
722
|
-
"selectInterval": "",
|
|
723
|
-
"selectLocation": "",
|
|
724
|
-
"setEndToNow": "",
|
|
725
|
-
"setPeriodAfterBegin": "",
|
|
726
|
-
"setPeriodBeforeEnd": "",
|
|
727
|
-
"showDefaultPeriod": "",
|
|
728
|
-
"showFullPeriod": "",
|
|
729
|
-
"showNextPeriod": "",
|
|
730
|
-
"showPrevPeriod": "",
|
|
717
|
+
"locationLabel": "Emplacement",
|
|
718
|
+
"pickLocation": "Choisir un emplacement sur la carte",
|
|
719
|
+
"pickLocationDesc": "Choisissez un emplacement sur la carte",
|
|
720
|
+
"removeDatastream": "Supprimer le flux de données",
|
|
721
|
+
"removeLocation": "Supprimer l’emplacement",
|
|
722
|
+
"selectInterval": "Sélectionner un intervalle",
|
|
723
|
+
"selectLocation": "Sélectionner un emplacement",
|
|
724
|
+
"setEndToNow": "Définir la fin à maintenant",
|
|
725
|
+
"setPeriodAfterBegin": "Définir la période après le début",
|
|
726
|
+
"setPeriodBeforeEnd": "Définir la période avant la fin",
|
|
727
|
+
"showDefaultPeriod": "Afficher la période par défaut",
|
|
728
|
+
"showFullPeriod": "Afficher la période complète",
|
|
729
|
+
"showNextPeriod": "Afficher la période suivante",
|
|
730
|
+
"showPrevPeriod": "Afficher la période précédente",
|
|
731
731
|
"statistics": {
|
|
732
|
-
"arithmeticMean": "",
|
|
733
|
-
"nthPercentile": ""
|
|
732
|
+
"arithmeticMean": "Moyenne arithmétique",
|
|
733
|
+
"nthPercentile": "ème percentile"
|
|
734
734
|
},
|
|
735
|
-
"title": ""
|
|
736
|
-
"zoomIn": "",
|
|
737
|
-
"zoomOut": ""
|
|
735
|
+
"title": "Requête SensorThings"
|
|
738
736
|
},
|
|
739
737
|
"serviceinfo": {
|
|
740
738
|
"abstract": "Résumé",
|
|
@@ -760,8 +758,8 @@
|
|
|
760
758
|
},
|
|
761
759
|
"settings3d": {
|
|
762
760
|
"fov": "Champ de vue",
|
|
763
|
-
"pointSize": "",
|
|
764
|
-
"pointSizeAuto": "",
|
|
761
|
+
"pointSize": "Taille de points",
|
|
762
|
+
"pointSizeAuto": "Automatique",
|
|
765
763
|
"quality": "Qualité"
|
|
766
764
|
},
|
|
767
765
|
"share": {
|
|
@@ -782,14 +780,14 @@
|
|
|
782
780
|
"vertex": "Snapping aux sommets"
|
|
783
781
|
},
|
|
784
782
|
"sunexposure3d": {
|
|
785
|
-
"end": "",
|
|
786
|
-
"hoursOfSunlight": "",
|
|
787
|
-
"includeterrain": "",
|
|
788
|
-
"irradiation": "",
|
|
789
|
-
"meanIrradiance": "",
|
|
790
|
-
"spatialres": "",
|
|
791
|
-
"start": "",
|
|
792
|
-
"tempres": ""
|
|
783
|
+
"end": "Heure de fin",
|
|
784
|
+
"hoursOfSunlight": "Heures d’ensoleillement",
|
|
785
|
+
"includeterrain": "Inclure le terrain",
|
|
786
|
+
"irradiation": "Irradiation",
|
|
787
|
+
"meanIrradiance": "Irradiance moyenne",
|
|
788
|
+
"spatialres": "Résolution spatiale",
|
|
789
|
+
"start": "Heure de début",
|
|
790
|
+
"tempres": "Résolution temporelle"
|
|
793
791
|
},
|
|
794
792
|
"themelayerslist": {
|
|
795
793
|
"addanyway": "Ajouter quand même",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"Settings": "Impostazioni",
|
|
33
33
|
"Settings3D": "Impostazioni 3D",
|
|
34
34
|
"Share": "Condividi",
|
|
35
|
-
"SunExposure3D": "",
|
|
35
|
+
"SunExposure3D": "Esposizione al sole",
|
|
36
36
|
"ThemeSwitcher": "Temi",
|
|
37
37
|
"AttributeTable": "Tabella attributi",
|
|
38
38
|
"AuthenticationLogin": "Accedi",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"PrintScreen3D": "Esporta raster",
|
|
61
61
|
"Redlining": "Strumenti di disegno",
|
|
62
62
|
"Routing": "Routing",
|
|
63
|
-
"SensorThingsTool": "",
|
|
63
|
+
"SensorThingsTool": "Strumento SensorThings",
|
|
64
64
|
"Tools": "Strumenti",
|
|
65
65
|
"TourGuide": "Guida introduttiva",
|
|
66
66
|
"TimeManager": "Linea temporale",
|
|
@@ -121,13 +121,13 @@
|
|
|
121
121
|
"clear": "Azzera",
|
|
122
122
|
"clone": "Copia",
|
|
123
123
|
"close": "Chiudi",
|
|
124
|
-
"compute": "",
|
|
125
|
-
"date": "",
|
|
124
|
+
"compute": "Calcola",
|
|
125
|
+
"date": "Data",
|
|
126
126
|
"delete": "Elimina",
|
|
127
127
|
"download": "Scarica",
|
|
128
128
|
"ellipse": "Ellisse",
|
|
129
129
|
"export": "Esporta",
|
|
130
|
-
"false": "",
|
|
130
|
+
"false": "Falso",
|
|
131
131
|
"format": "Formato",
|
|
132
132
|
"line": "Linea",
|
|
133
133
|
"loading": "Caricamento...",
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"square": "Quadrato",
|
|
146
146
|
"sync2dview": "Sincronizza con visuale 2D",
|
|
147
147
|
"text": "Testo",
|
|
148
|
-
"true": "",
|
|
148
|
+
"true": "Vero",
|
|
149
149
|
"wait": "Attendere...",
|
|
150
150
|
"zoomin": "Ingrandisci",
|
|
151
151
|
"zoomout": "Rimpicciolisci"
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
"radius": "Raggio"
|
|
337
337
|
},
|
|
338
338
|
"layercatalog": {
|
|
339
|
-
"openlink": "",
|
|
339
|
+
"openlink": "Apri collegamento",
|
|
340
340
|
"windowtitle": "Catalogo livelli"
|
|
341
341
|
},
|
|
342
342
|
"layerinfo": {
|
|
@@ -642,99 +642,97 @@
|
|
|
642
642
|
"unknownmore": "Ulteriori risultati"
|
|
643
643
|
},
|
|
644
644
|
"sensorthingstool": {
|
|
645
|
-
"addDatastream": "",
|
|
645
|
+
"addDatastream": "Aggiungi flusso di dati al grafico",
|
|
646
646
|
"datastreamInfo": {
|
|
647
|
-
"calibration": "",
|
|
648
|
-
"description": "",
|
|
649
|
-
"location": "",
|
|
650
|
-
"name": "",
|
|
651
|
-
"observedProperty": "",
|
|
652
|
-
"sensor": "",
|
|
653
|
-
"thing": "",
|
|
654
|
-
"title": "",
|
|
655
|
-
"unit": ""
|
|
647
|
+
"calibration": "Calibrazione",
|
|
648
|
+
"description": "Descrizione",
|
|
649
|
+
"location": "Posizione",
|
|
650
|
+
"name": "Nome",
|
|
651
|
+
"observedProperty": "Proprietà osservata",
|
|
652
|
+
"sensor": "Sensore",
|
|
653
|
+
"thing": "Oggetto",
|
|
654
|
+
"title": "Informazioni sul flusso di dati",
|
|
655
|
+
"unit": "Unità"
|
|
656
656
|
},
|
|
657
|
-
"datastreamLabel": "",
|
|
658
|
-
"datastreamNone": "",
|
|
657
|
+
"datastreamLabel": "Flusso di dati",
|
|
658
|
+
"datastreamNone": "Nessun risultato",
|
|
659
659
|
"datastreamOptions": {
|
|
660
|
-
"arithmeticMean": "",
|
|
661
|
-
"percentiles": "",
|
|
662
|
-
"percentilesDesc": "",
|
|
663
|
-
"showOnSecondYAxis": "",
|
|
664
|
-
"showPercentiles": "",
|
|
665
|
-
"title": ""
|
|
660
|
+
"arithmeticMean": "Media aritmetica",
|
|
661
|
+
"percentiles": "Percentili",
|
|
662
|
+
"percentilesDesc": "Inserisci i percentili come valori separati da virgole",
|
|
663
|
+
"showOnSecondYAxis": "Mostra sull'asse Y secondario",
|
|
664
|
+
"showPercentiles": "Mostra percentili",
|
|
665
|
+
"title": "Statistiche del flusso di dati"
|
|
666
666
|
},
|
|
667
667
|
"datastreamTable": {
|
|
668
|
-
"fullPeriod": "",
|
|
669
|
-
"selectedPeriod": "",
|
|
670
|
-
"timestamp": "",
|
|
671
|
-
"title": "",
|
|
672
|
-
"unit": "",
|
|
673
|
-
"value": ""
|
|
668
|
+
"fullPeriod": "Periodo disponibile",
|
|
669
|
+
"selectedPeriod": "Periodo selezionato",
|
|
670
|
+
"timestamp": "Timestamp",
|
|
671
|
+
"title": "Tabella del flusso di dati",
|
|
672
|
+
"unit": "Unità",
|
|
673
|
+
"value": "Valore"
|
|
674
674
|
},
|
|
675
675
|
"datastreamsFilter": {
|
|
676
|
-
"datastream": "",
|
|
677
|
-
"location": "",
|
|
678
|
-
"observedProperty": "",
|
|
679
|
-
"sensor": "",
|
|
680
|
-
"thing": "",
|
|
681
|
-
"title": ""
|
|
676
|
+
"datastream": "Flusso di dati",
|
|
677
|
+
"location": "Posizione",
|
|
678
|
+
"observedProperty": "Proprietà osservata",
|
|
679
|
+
"sensor": "Sensore",
|
|
680
|
+
"thing": "Oggetto",
|
|
681
|
+
"title": "Filtro flussi di dati"
|
|
682
682
|
},
|
|
683
|
-
"exportCSV": "",
|
|
684
|
-
"exportImage": "",
|
|
683
|
+
"exportCSV": "Esporta come CSV",
|
|
684
|
+
"exportImage": "Esporta come immagine",
|
|
685
685
|
"graphOptions": {
|
|
686
|
-
"reverseAxis": "",
|
|
687
|
-
"threshold": "",
|
|
688
|
-
"thresholdLabel": "",
|
|
689
|
-
"thresholdValue": "",
|
|
690
|
-
"title": "",
|
|
691
|
-
"toggleGridLines": "",
|
|
692
|
-
"toggleSecondYAxis": "",
|
|
693
|
-
"xAxis": "",
|
|
694
|
-
"xAxisAtTop": "",
|
|
695
|
-
"yAuto": "",
|
|
696
|
-
"yAxis": "",
|
|
697
|
-
"yMax": "",
|
|
698
|
-
"yMin": ""
|
|
686
|
+
"reverseAxis": "Inverti asse",
|
|
687
|
+
"threshold": "Soglia",
|
|
688
|
+
"thresholdLabel": "Etichetta",
|
|
689
|
+
"thresholdValue": "Valore",
|
|
690
|
+
"title": "Impostazioni",
|
|
691
|
+
"toggleGridLines": "Linee della griglia",
|
|
692
|
+
"toggleSecondYAxis": "Asse Y secondario",
|
|
693
|
+
"xAxis": "Asse X",
|
|
694
|
+
"xAxisAtTop": "Posizione in alto",
|
|
695
|
+
"yAuto": "automatico",
|
|
696
|
+
"yAxis": "Asse Y",
|
|
697
|
+
"yMax": "Limite superiore",
|
|
698
|
+
"yMin": "Limite inferiore"
|
|
699
699
|
},
|
|
700
700
|
"intervalOptions": {
|
|
701
|
-
"custom": "",
|
|
702
|
-
"day": "",
|
|
703
|
-
"hour": "",
|
|
704
|
-
"month": "",
|
|
705
|
-
"week": "",
|
|
706
|
-
"year": ""
|
|
701
|
+
"custom": "Personalizzato",
|
|
702
|
+
"day": "Giorno",
|
|
703
|
+
"hour": "Ora",
|
|
704
|
+
"month": "Mese",
|
|
705
|
+
"week": "Settimana",
|
|
706
|
+
"year": "Anno"
|
|
707
707
|
},
|
|
708
708
|
"locationInfo": {
|
|
709
|
-
"description": "",
|
|
710
|
-
"inactive": "",
|
|
711
|
-
"name": "",
|
|
712
|
-
"platform": "",
|
|
713
|
-
"qompSensorId": "",
|
|
714
|
-
"serialNumber": "",
|
|
715
|
-
"title": ""
|
|
709
|
+
"description": "Descrizione",
|
|
710
|
+
"inactive": "Inattivo",
|
|
711
|
+
"name": "Nome",
|
|
712
|
+
"platform": "Piattaforma",
|
|
713
|
+
"qompSensorId": "ID sensore QOMP",
|
|
714
|
+
"serialNumber": "Numero di serie",
|
|
715
|
+
"title": "Informazioni sulla posizione"
|
|
716
716
|
},
|
|
717
|
-
"locationLabel": "",
|
|
718
|
-
"pickLocation": "",
|
|
719
|
-
"pickLocationDesc": "",
|
|
720
|
-
"removeDatastream": "",
|
|
721
|
-
"removeLocation": "",
|
|
722
|
-
"selectInterval": "",
|
|
723
|
-
"selectLocation": "",
|
|
724
|
-
"setEndToNow": "",
|
|
725
|
-
"setPeriodAfterBegin": "",
|
|
726
|
-
"setPeriodBeforeEnd": "",
|
|
727
|
-
"showDefaultPeriod": "",
|
|
728
|
-
"showFullPeriod": "",
|
|
729
|
-
"showNextPeriod": "",
|
|
730
|
-
"showPrevPeriod": "",
|
|
717
|
+
"locationLabel": "Posizione",
|
|
718
|
+
"pickLocation": "Seleziona posizione sulla mappa",
|
|
719
|
+
"pickLocationDesc": "Seleziona una posizione sulla mappa",
|
|
720
|
+
"removeDatastream": "Rimuovi flusso di dati",
|
|
721
|
+
"removeLocation": "Rimuovi posizione",
|
|
722
|
+
"selectInterval": "Seleziona intervallo",
|
|
723
|
+
"selectLocation": "Seleziona posizione",
|
|
724
|
+
"setEndToNow": "Imposta fine a ora",
|
|
725
|
+
"setPeriodAfterBegin": "Imposta periodo come intervallo dopo l'inizio",
|
|
726
|
+
"setPeriodBeforeEnd": "Imposta periodo come intervallo prima della fine",
|
|
727
|
+
"showDefaultPeriod": "Mostra periodo predefinito",
|
|
728
|
+
"showFullPeriod": "Mostra periodo completo",
|
|
729
|
+
"showNextPeriod": "Mostra periodo successivo",
|
|
730
|
+
"showPrevPeriod": "Mostra periodo precedente",
|
|
731
731
|
"statistics": {
|
|
732
|
-
"arithmeticMean": "",
|
|
733
|
-
"nthPercentile": ""
|
|
732
|
+
"arithmeticMean": "Media aritmetica",
|
|
733
|
+
"nthPercentile": "esimo percentile"
|
|
734
734
|
},
|
|
735
|
-
"title": ""
|
|
736
|
-
"zoomIn": "",
|
|
737
|
-
"zoomOut": ""
|
|
735
|
+
"title": "Query SensorThings"
|
|
738
736
|
},
|
|
739
737
|
"serviceinfo": {
|
|
740
738
|
"abstract": "Riassunto",
|
|
@@ -760,8 +758,8 @@
|
|
|
760
758
|
},
|
|
761
759
|
"settings3d": {
|
|
762
760
|
"fov": "Campo visivo",
|
|
763
|
-
"pointSize": "",
|
|
764
|
-
"pointSizeAuto": "",
|
|
761
|
+
"pointSize": "Dimensione punti",
|
|
762
|
+
"pointSizeAuto": "Automatico",
|
|
765
763
|
"quality": "Qualità"
|
|
766
764
|
},
|
|
767
765
|
"share": {
|
|
@@ -782,14 +780,14 @@
|
|
|
782
780
|
"vertex": "Snap ai vertici"
|
|
783
781
|
},
|
|
784
782
|
"sunexposure3d": {
|
|
785
|
-
"end": "",
|
|
786
|
-
"hoursOfSunlight": "",
|
|
787
|
-
"includeterrain": "",
|
|
788
|
-
"irradiation": "",
|
|
789
|
-
"meanIrradiance": "",
|
|
790
|
-
"spatialres": "",
|
|
791
|
-
"start": "",
|
|
792
|
-
"tempres": ""
|
|
783
|
+
"end": "Fine",
|
|
784
|
+
"hoursOfSunlight": "Ore di sole",
|
|
785
|
+
"includeterrain": "Includi terreno",
|
|
786
|
+
"irradiation": "Irradiazione",
|
|
787
|
+
"meanIrradiance": "Intensità media di irraggiamento",
|
|
788
|
+
"spatialres": "Risoluzione spaziale",
|
|
789
|
+
"start": "Inizio",
|
|
790
|
+
"tempres": "Risoluzione temporale"
|
|
793
791
|
},
|
|
794
792
|
"themelayerslist": {
|
|
795
793
|
"addanyway": "Aggiungi comunque",
|
|
@@ -632,8 +632,6 @@
|
|
|
632
632
|
"sensorthingstool.statistics.arithmeticMean",
|
|
633
633
|
"sensorthingstool.statistics.nthPercentile",
|
|
634
634
|
"sensorthingstool.title",
|
|
635
|
-
"sensorthingstool.zoomIn",
|
|
636
|
-
"sensorthingstool.zoomOut",
|
|
637
635
|
"serviceinfo.abstract",
|
|
638
636
|
"serviceinfo.contactEmail",
|
|
639
637
|
"serviceinfo.contactOrganization",
|
package/utils/PermaLinkUtils.js
CHANGED
|
@@ -107,7 +107,7 @@ export var UrlParams = {
|
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
109
|
clear: function clear() {
|
|
110
|
-
var clearKeys = ['k', 't', 'l', 'bl', 'bk', 'c', 'hc', 'ic', 's', 'e', 'crs', 'st', 'sp', 'f', 'v', 'v3d', 'bl3d'];
|
|
110
|
+
var clearKeys = ['k', 't', 'l', 'bl', 'bk', 'c', 'hc', 'ic', 's', 'e', 'crs', 'st', 'sp', 'f', 'v', 'v3d', 'bl3d', 'task'];
|
|
111
111
|
this.updateParams(clearKeys.reduce(function (res, key) {
|
|
112
112
|
return _objectSpread(_objectSpread({}, res), {}, _defineProperty({}, key, undefined));
|
|
113
113
|
}, {}), true);
|