Hello,
We would like to change the Assignment symbology for the Workforce Workers app for Assignments that have a Status of 'Assigned' and a Priority of 'Critical' so that these assignments are more visible on the mobile app for workers.
We use the following arcade expression to add the new status value (for symbology purposes) and then symbolize in the Workers map. This result meets our expectations when viewing the Worker map in the map viewer, but when opening the Workforce project on a mobile device, the symbol next to the assignment in the assignment list is not present.
Just wondering if it is even possible to manipulate the symbols in the Workforce Workers App?
Thanks,
- Jake
function calcSymbolClass(status, priority)
{
if (status == 1 && priority == 4) {
return 7;
} else {
return status;
}
}
calcSymbolClass($feature.status, $feature.priority);