I am creating a Floodplain information application for residents to review their pending floodplain change proposals. Ive created pop up showing the property information and intersecting floodplain information. I can get the first floodzone classification the parcel intersects, but I want to identify all the floodzone classifications the parcel intersects concatonated(ex: A, AE, VE, X ect...) Ive tried to use the below code but it doenst return any infoformation. I also dont want it to return redundant zones(ex: A, VE, A, X,X).
var FLDZN = Contains($feature,FeatureSetByName($map,"Flood Hazard Area"))
var FLDZN_list = []
for (var f in FLDZN){
Push(FLDZN_list, f.OFFICIAL_N)
}
return Concatenate(FLDZN_list, '\n')
Thanks in advance for advice!