HelloI need arcade code to symbolize this condition to use on AGOL:
site id is not null and condition=open then equal to store.
Thanks
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.
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.