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 Number BUG-000169467
SubmittedJuly 26, 2024
Last ModifiedJuly 30, 2024
Applies toArcGIS Online
Version foundJune 2024
Operating SystemWindows OS
Operating System Version10.0 64 Bit
StatusWill Not Be Addressed

Additional Information

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"

Steps to Reproduce

Bug ID: BUG-000169467

Software:

  • ArcGIS Online

Get notified when the status of a bug changes

Download the Esri Support App

Discover more on this topic

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options