ArcGIS Runtime SDK for iOS: AGSGraphicsOverlay.h File Reference
ArcGIS Runtime SDK for iOS  100.9
AGSGraphicsOverlay.h File Reference

Go to the source code of this file.

Enumerations

enum  AGSGraphicsRenderingMode { AGSGraphicsRenderingModeDynamic = 0, AGSGraphicsRenderingModeStatic = 1 }
 

Enumeration Type Documentation

§ AGSGraphicsRenderingMode

Specifies how the AGSGraphicsOverlay renders its content. Dynamic mode is better suited for a small number of graphics that are constantly changing or moving and need to be redrawn frequently. If your content is more static then use static mode. Static mode does not provide the same level of interactiveness or user experience as dynamic mode, but it allows the overlay to render a larger number of graphics.

Since
100.0
Enumerator
AGSGraphicsRenderingModeDynamic 

Dynamic rendering mode - the default. Update graphics as the map zooms and pans in an immediate mode.

AGSGraphicsRenderingModeStatic 

Static rendering mode. Only update graphics between zoom and pan operations in a retained mode. Use this mode to handle large amount of graphics.