ArcGIS Runtime SDK for iOS: AGSRasterLayer.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSRasterLayer.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 2022 ESRI
3 
4  All rights reserved under the copyright laws of the United States
5  and applicable international laws, treaties, and conventions.
6 
7  This material is licensed for use under the Esri Master License
8  Agreement (MLA), and is bound by the terms of that agreement.
9  You may redistribute and use this code without modification,
10  provided you adhere to the terms of the MLA and include this
11  copyright notice.
12 
13  See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english
14 
15  For additional information, contact:
16  Environmental Systems Research Institute, Inc.
17  Attn: Contracts and Legal Services Department
18  380 New York Street
19  Redlands, California, 92373
20  USA
21 
22  email: contracts@esri.com
23  */
24 
25 #import <Foundation/Foundation.h>
26 #import <ArcGIS/AGSImageAdjustmentLayer.h>
27 #import <ArcGIS/AGSPopupSource.h>
28 #import <ArcGIS/AGSTimeAware.h>
29 
30 @class AGSRasterRenderer;
31 @class AGSRaster;
32  //Required for Globals API doc
34 
78 
79 
80 #pragma mark -
81 #pragma mark initializers
82 
83 
84 
89 -(instancetype)initWithRaster:(AGSRaster*)raster;
90 
96 +(instancetype)rasterLayerWithRaster:(AGSRaster*)raster;
97 
102 -(instancetype)initWithItem:(AGSItem*)item;
103 
109 +(instancetype)rasterLayerWithItem:(AGSItem*)item;
110 
111 #pragma mark -
112 #pragma mark properties
113 
117 @property (nonatomic, strong, readonly) AGSRaster *raster;
118 
122 @property (nullable, nonatomic, strong, readwrite) AGSRasterRenderer *renderer;
123 
124 
125 @end
A base class for layers that allow color adjustments.
Definition: AGSImageAdjustmentLayer.h:37
Object representing a unit of content.
Definition: AGSItem.h:43
A raster dataset.
Definition: AGSRaster.h:68
Displays raster data in a map or scene.
Definition: AGSRasterLayer.h:77
AGSRaster * raster
Definition: AGSRasterLayer.h:117
AGSRasterRenderer * renderer
Definition: AGSRasterLayer.h:122
A base class for raster renderers.
Definition: AGSRasterRenderer.h:37
A source for popups.
Definition: AGSPopupSource.h:40
A protocol that can be implemented by layers that support time.
Definition: AGSTimeAware.h:41