laptop and a wrench

Bug

Intersections do not work in the form in Map Viewer when the intersecting features are two points, or one point and one line

ArcGIS Online
Bug-ID-Nummer BUG-000169467
EingereichtJuly 26, 2024
Zuletzt geändertJuly 30, 2024
Gilt fürArcGIS Online
Gefunden in VersionJune 2024
BetriebssystemWindows OS
Betriebssystemversion10.0 64 Bit
StatusWill Not Be Addressed

Zusätzliche Informationen

This is closed, as using the buffer() function is the recommended way to use intersections in this case.

Workaround

Add a buffer to the Arcade script. Example:

var points = FeatureSetByName($map, 'FEATURE_LAYER', ['FIELD_NAME'])

var pointsIntersecting = Intersects(Buffer($feature,0.1), points)

 

if (!IsEmpty(pointsIntersecting)) {

 for (var pointIntersecting in pointsIntersecting) {

   return pointIntersecting['FIELD_NAME']

}}

 else {

return "null"

Schritte zur Reproduzierung

Bug-ID: BUG-000169467

Software:

  • ArcGIS Online

Benachrichtigung erhalten, wenn sich der Status eines Bugs ändert

Esri Support App herunterladen

Weitere Informationen zu diesem Thema erkunden

Unterstützung durch ArcGIS-Experten anfordern

An den technischen Support wenden

Esri Support App herunterladen

Zu Download-Optionen wechseln