I am trying to create an expression that will show whether or not a selected parcel polygon intersects with a buffer polygon in my experience builder. My understanding is that when I call $feature in an expression it is referring to the currently selected feature. My assumption then is that when using Intersect() i can compare a selected feature with the entirety of my buffer polygon using the following code:
if(Boolean(Intersects($feature, FeatureSetByName($map, "Dispensary Buffer")))){
return 'This parcel is not eligable for development.'
} else {
return 'This parcel may be eligable for development. Please contact City of Columbus Building and Zoning Services'
};
Am I misunderstanding the scope of $feature?