ArcGIS Runtime SDK for iOS: AGSRasterLayer.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSRasterLayer.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 1995-2020 ESRI
3 
4  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
5  Unpublished material - all rights reserved under the
6  Copyright Laws of the United States and applicable international
7  laws, treaties, and conventions.
8 
9  For additional information, contact:
10  Environmental Systems Research Institute, Inc.
11  Attn: Contracts and Legal Services Department
12  380 New York Street
13  Redlands, California, 92373
14  USA
15 
16  email: contracts@esri.com
17  */
18 
19 #import <ArcGIS/AGSImageAdjustmentLayer.h>
20 #import <ArcGIS/AGSPopupSource.h>
21 #import <ArcGIS/AGSTimeAware.h>
22 
23 @class AGSRasterRenderer;
24 @class AGSRaster;
25  //Required for Globals API doc
27 
67 
68 
69 #pragma mark -
70 #pragma mark initializers
71 
72 
73 
79 -(instancetype)initWithRaster:(AGSRaster*)raster;
80 
86 +(instancetype)rasterLayerWithRaster:(AGSRaster*)raster;
87 
93 -(instancetype)initWithItem:(AGSItem*)item;
94 
100 +(instancetype)rasterLayerWithItem:(AGSItem*)item;
101 
102 #pragma mark -
103 #pragma mark properties
104 
108 @property (nonatomic, strong, readonly) AGSRaster *raster;
109 
113 @property (nullable, nonatomic, strong, readwrite) AGSRasterRenderer *renderer;
114 
115 
116 @end
A protocol that can be implemented by layers that support time.
Definition: AGSTimeAware.h:33
AGSRasterRenderer * renderer
Definition: AGSRasterLayer.h:113
A base class for raster renderers.
Definition: AGSRasterRenderer.h:29
Displays raster data in a map or scene.
Definition: AGSRasterLayer.h:66
A raster dataset.
Definition: AGSRaster.h:60
Object representing a unit of content.
Definition: AGSItem.h:36
A base class for layers that allow color adjustments.
Definition: AGSImageAdjustmentLayer.h:29
A source for popups.
Definition: AGSPopupSource.h:34