I have tried to create an expression that captures everything under a point to show in a popup using the below.
var intersectLayer =Intersects(FeatureSetByName($map,"NZ Parcels"), $feature)
for (var f in intersectLayer){
return f.parcel_intent
}
I do not get an error but nothing shows.
I've tested this on a few different scenarios and have found that it works for polygon to polygon and for polygon to point intersects but does not seem to work when it starts with a point.
How do I intersect starting with a point?