Hello
I need arcade code to symbolize this condition to use on AGOL:
site id is not null and condition=open then equal to store.
Thanks
Solved! Go to Solution.
Perhaps
if (IsEmpty(site id) == false && condition == "open") {
// return symbology when conditions are met
} else {
// return symbology when conditions not met
}
Perhaps
if (IsEmpty(site id) == false && condition == "open") {
// return symbology when conditions are met
} else {
// return symbology when conditions not met
}
Thanks @CarmelConnolly
I end up doing this
var condition = $feature.condition
var site = $feature.site_id
if ((condition =="Open") && !isEmpty(site)) {
return "store"}
else {
return "no store"
}
but right now I want to bring store polygon front with with desire color and no store go back when I have overlap polygon in some location.