ArcGIS Runtime SDK for iOS
100.15
|
Go to the source code of this file.
Enumerations | |
enum | AGSFeatureRenderingMode { AGSFeatureRenderingModeAutomatic = 0 , AGSFeatureRenderingModeStatic = 1 , AGSFeatureRenderingModeDynamic = 2 } |
enum | AGSFeatureTilingMode { AGSFeatureTilingModeEnabledWhenSupported = 0 , AGSFeatureTilingModeDisabled = 1 } |
enum | AGSSelectionMode { AGSSelectionModeAdd = 0 , AGSSelectionModeNew = 1 , AGSSelectionModeSubtract = 2 } |
Rendering modes available for feature layers.
enum AGSFeatureTilingMode |
Feature tiling modes available to feature layers. This determines how feature tiling is handled for each layer. Using the default mode is highly recommended. As of now, only services based on service feature tables support feature tiling.
Enumerator | |
---|---|
AGSFeatureTilingModeEnabledWhenSupported | Use feature tiling whenever a service supports it. Feature tiling retrieves more features per layer from a service by making multiple, smaller requests to said service. Since each request gathers a portion of the total features, this allows more features to be rendered in the extent than what the maxRecordCount would normally allow. When in this mode, all rendering requests to services will use feature tiling unless the following applies: |
AGSFeatureTilingModeDisabled | Feature tiling is disabled. When in this mode, feature tiling will not be used even if a service supports it. This reduces the number of requests sent by each layer. Disabling feature tiling can results in less features returned from a service. |
enum AGSSelectionMode |