Arcade Expression popup polylines contained within polygon

185
1
Jump to solution
11-20-2023 07:19 AM
StuartMoore
Occasional Contributor III

any ideas why the below will work against an AGOL hosted feature service but not against one hosted from our local ArcServer 

var MLay = Distinct(Contains(FeatureSetByName($map,"lineA"),$feature),'FPERSON')

var ML_array = []
var ML_pop2 = ''

for (var i in MLay ){
  Insert(ML_array,0,i.FPERSON)
}

var ML = Distinct(ML_array)
for (var j in ML){
  ML_pop2 += ML[j] + ", "
}

return "ML(s): " + ML_pop2

 

0 Kudos
1 Solution

Accepted Solutions
StuartMoore
Occasional Contributor III

 

for (var i in MLay ){
  Insert(ML_array,0,i.FPERSON)
}

 

var c = 0
for (var i in MLay ){
  ML_array[c] = i.FPERSON
  c +=1
}

fixed it with this 

View solution in original post

0 Kudos
1 Reply
StuartMoore
Occasional Contributor III

 

for (var i in MLay ){
  Insert(ML_array,0,i.FPERSON)
}

 

var c = 0
for (var i in MLay ){
  ML_array[c] = i.FPERSON
  c +=1
}

fixed it with this 

0 Kudos