漏洞 ID 编号 |
BUG-000163016 |
已提交 | November 16, 2023 |
上次修改时间 | September 26, 2025 |
适用范围 | ArcGIS Field Maps |
找到的版本 | Oct 2023 |
操作系统 | Android |
操作系统版本 | N/A |
状态 | As Designed
经开发团队审核,已确定此行为符合设计。 有关详细信息,请参阅“其他信息”部分。
|
附加信息
The expression shown in the known limit returns the first pole in the database, not the closest pole. The following expression will return the global ID for the nearest pole.
var poles = FeatureSetByName($map, "Poles");
var nearestPole = First(Intersects(poles, Buffer($feature, 100, "feet")));
return nearestPole.globalid;
解决办法
Add the calculated expression to a string field in the form as a temporary workaround.
重现步骤