ArcGIS Runtime SDK for iOS
100.15
|
Go to the source code of this file.
Enumerations | |
enum | AGSMosaicMethod { AGSMosaicMethodNone = 0 , AGSMosaicMethodCenter = 1 , AGSMosaicMethodNorthwest = 2 , AGSMosaicMethodNadir = 3 , AGSMosaicMethodViewpoint = 4 , AGSMosaicMethodAttribute = 5 , AGSMosaicMethodLockRaster = 6 , AGSMosaicMethodSeamline = 7 } |
enum | AGSMosaicOperation { AGSMosaicOperationFirst = 0 , AGSMosaicOperationLast = 1 , AGSMosaicOperationMin = 2 , AGSMosaicOperationMax = 3 , AGSMosaicOperationMean = 4 , AGSMosaicOperationBlend = 5 , AGSMosaicOperationSum = 6 } |
enum AGSMosaicMethod |
The mosaic method that is used to determine how multiple rasters in an AGSMosaicDataset
will be sorted.
An AGSImageServiceRaster
may not support every mosaic method. Check the service's metadata for "Allowed Mosaic Methods" to see which methods are supported. Mosaic methods that are "view-dependent" order rasters based off where the camera is located while "view-independent" order rasters the same regardless of where the camera is located.
Enumerator | |
---|---|
AGSMosaicMethodNone | Orders rasters based on the order (ObjectID) in the mosaic dataset attribute table. Mosaic results are view-independent. |
AGSMosaicMethodCenter | Orders rasters based on the distance between each raster's center and the view center. Mosaic results are view-dependent. |
AGSMosaicMethodNorthwest | Orders rasters based on the distance between each raster's center and the northwest point of the service. Mosaic results are view-independent. |
AGSMosaicMethodNadir | Orders rasters based on the distance between each raster's nadir position and view center. Mosaic results are view-dependent. |
AGSMosaicMethodViewpoint | Orders rasters based on the distance between each raster's center and a user defined view point. Mosaic results are view-independent. |
AGSMosaicMethodAttribute | Orders rasters based on the absolute distance between their values of an attribute and a base value. Only numeric or date fields are applicable. The attribute is specified by |
AGSMosaicMethodLockRaster | Displays only the selected rasters specified in |
AGSMosaicMethodSeamline | Orders rasters based on the predefined seamline. The |
enum AGSMosaicOperation |
The mosaic operation that is used to define how overlapping cells from various rasters in a mosaic dataset will be resolved in the mosaicked image.