I currently have lots of graphics displayed in a GraphicLayer and frequent updates on their location.
So let say I need to refresh thousands of polyline graphics on my GraphicLayer, using the updateGraphic(int id, Geometry geometry) method : it takes some time to perform the updateGraphic for each graphic, so I can see on the map the graphics blinked at different times....
What I would like to do, is to suspend the automatic refresh of the GraphicLayer, update my graphics in a loop for() {}, then refresh the GraphicLayer in one instruction like .resfresh(). Is this possible with ArcGIS Runtime 10.1.1 ?
I need something like .setSuspendUpdate(true) for GraphicTracker in ArcGIS Engine...