I have two layers: A layer of all tax parcels, and a layer of a subset of all the tax parcels.
I am trying to use Intersect in arcade to return a featureSet that I can then use to inject a field from the subset layer in the pop-up of the layer with all the tax parcels. However, it is returning Null field values, even though there are geometries that clearly overlap (as they are identical). Please see below:
var parcel = Intersects(FeatureSetByName($map,"Name of layer with subset of all tax parcels"), $feature);
for (var f in parcel){
return f.NameOfField
}
returns empty result (shown in attached photo).
Any obvious reason someone can see this is happening?