I have this AGOL map that uses different colors based on surveys and created a symbology which works fine in the web version of the map.
Notice the blue line in the following screenshot:
Then I linked this map in Survey123 Connect and added it's ID reference under body::esri:style for a geopoint question. This is what renders in the app (no blue line):
Any reason why the map symbology does not follow?
Thanks.
Solved! Go to Solution.
I changed my arcade expression and it works.
The field in question uses a domain but I also wanted to deal with null values. So I had multiple ifs do extract all the possible domain names and another if(isempty($feature)) return "something".
Now I just have
Thanks!
Question on semantics. Is that a "Blue line", or is it a "selected feature"?
great question!
there is no selection. I have an arcade expression which defines symbology categories and then those categories are styled differently.
Edit: the labels, which are based on the same rules (yet they are filters, not an arcade expression), do work.
Web map viewer:
Survey123:
I changed my arcade expression and it works.
The field in question uses a domain but I also wanted to deal with null values. So I had multiple ifs do extract all the possible domain names and another if(isempty($feature)) return "something".
Now I just have
Thanks!