| Bug-ID-Nummer |
BUG-000163016 |
| Eingereicht | November 16, 2023 |
| Zuletzt geändert | September 26, 2025 |
| Gilt für | ArcGIS Field Maps |
| Gefunden in Version | Oct 2023 |
| Betriebssystem | Android |
| Betriebssystemversion | N/A |
| Status | As Designed
Nach Überprüfung durch das Entwicklungsteam wurde festgestellt, dass dieses Verhalten wie geplant ist. Weitere Informationen finden Sie im Abschnitt "Zusätzliche Informationen".
|
Zusätzliche Informationen
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;
Workaround
Add the calculated expression to a string field in the form as a temporary workaround.
Schritte zur Reproduzierung