Hello,
I have a web map with AGOL hosted feature layers that are time enabled based on CreationDate. This web map is used in web app builder and has the time-slider widget configured to show survey data for each day. I am trying to figure out in the pop-up how to get the data to update to what the map is showing on the time-slider for summaries and totals.
Currently for the survey polygons, I would like to show feature counts and summaries. The below code works but just summaries the entire point feature layer for all survey days. I can add a date filter but I don't want the data to be tied to a specific date and have a filter for 5/3, 5/4, 5/6...
What is the best way to do this?
var sm_hschool = Intersects(FeatureSetByName($map, "Herring School:"), $feature);
return Round(Sum(sm_hschool, "NUMSMALL"),0);
Thanks in advance!
Kathy