The Survey123 for ArcGIS website does not trigger a geopoint constraint specified in a survey published from Survey123 Connect for ArcGIS.
上次发布: June 9, 2020ArcGIS Survey123
漏洞 ID 编号
BUG-000130495
已提交
April 29, 2020
上次修改时间
June 5, 2024
适用范围
ArcGIS Survey123
找到的版本
3.9
操作系统
Windows OS
操作系统版本
10.0 64 Bit
状态
Known Limit
经开发团队审核,已确定此问题与不受 Esri 控制的软件的已知限制有关。 问题的“其他信息”部分可能包含进一步说明。
附加信息
The form relies on a constraint applied to a hidden question to prevent submission. There is no way to directly edit a hidden question, contraints do not work on hidden questions. Place the logic being used to determine whether the location is valid in the constraint of the location question (substitute appropriate values for X_MIN, X_MAX, Y_MAX, Y_MIN):
(number(pulldata("@geopoint",.,"x")) > X_MIN) and (number(pulldata("@geopoint",${location},"x")) < X_MAX) and (number(pulldata("@geopoint",.,"y")) < Y_MAX) and (number(pulldata("@geopoint",${location},"y")) > Y_MIN)