Forum Replies Created
-
AuthorPosts
-
MikhailModeratorWhen you do it, please share your experience.
MikhailModeratorTiles should be available by a path like this
https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
s – scale
MikhailModeratorUseful links:
SasPlanet
How can I export a large zone from OpenStreetMap?
MikhailModeratorHi,
Definitely it is possible, but you need to do some research by yourself.
The general sequence:
1. Download tiles of the required area.
2. Run local web server that provides tiles.
3. Specify your local web server in a map XML file.
MikhailModeratori have a error similar #5010 when i built ScadaWeb
Hi,
Could you provide a link?Please describe what is expected behavior of the application and what is actual behavior?
MikhailModeratorWorks like a charm but I’m limited to 100 symbols in formula input.
To shorten, try this:
public double OR(params int[] cnlNums) { foreach (int cnlNum in cnlNums) { if (Val(cnlNum) > 0 && Stat(cnlNum) > 0) return 1; } return 0; }Example of formula using is OR(1,2,3,4,5)
-
This reply was modified 7 years, 1 month ago by
Mikhail.
MikhailModeratorHi,
Try the formula like that:public double OR(params double[] inputs) { foreach (double input in inputs) { if (input > 0) return 1; } return 0; }Note: I don’t test formulas on the forum. In case of error, please provide error message from the Server log.
MikhailModeratorTry to find out what was changed in your system. Check SQL scripts in the module configuration.
MikhailModeratorI meant if you click a component in a list of available components. To cancel the selection, click a pointer.
MikhailModeratorMany users ask for this feature. I suppose, we will implement it, but I can’t say when.
MikhailModeratorHi,
You can deploy it on your server and perform penetration testing.
MikhailModeratorHello,
Click pointer if you need to deselect a component that is recently clicked.
MikhailModeratorHello,
You need to manually select the next day. Would you like the application automatically switch a day?February 8, 2019 at 1:56 pm in reply to: Elastic Report and Chart Export function through iPad #4977
MikhailModeratorHello,
Right now, the Elastic Report page is fully functional when viewed using iOS device.
I am very glad. What application is used by iPad to open PDF and Excel?
Do you have any idea how to address the issue of ‘Export’ option not appearing in the Chart window when viewed using iOS device?
Open C:\SCADA\ScadaWeb\plugins\ChartPro\js\chartproform.js
Find$("#hlExport").parent().addClass("hidden"); // hide Export menu itemand comment or remove it. -
This reply was modified 7 years, 1 month ago by
-
AuthorPosts