ArcGIS Runtime SDK for iOS: AGSArcGISMapImageSublayer.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSArcGISMapImageSublayer.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/AGSArcGISSublayer.h>
27 
28 @class AGSSublayerSource;
29 @class AGSLabelDefinition;
31  //Required for Globals API doc
33 
47 
48 
49 
50 
51 #pragma mark -
52 #pragma mark initializers
53 
54 
55 
61 -(instancetype)initWithID:(NSInteger)ID;
62 
68 +(instancetype)ArcGISMapImageSublayerWithID:(NSInteger)ID;
69 
77 -(instancetype)initWithID:(NSInteger)ID source:(AGSSublayerSource *)source;
78 
86 +(instancetype)ArcGISMapImageSublayerWithID:(NSInteger)ID source:(AGSSublayerSource *)source;
87 
88 #pragma mark -
89 #pragma mark properties
90 
96 @property (nullable, nonatomic, strong, readonly) AGSSublayerSource *source;
97 
101 @property (nonatomic, assign, readonly, getter=isVisibleByDefault) BOOL visibleByDefault;
102 
114 @property (nonatomic, copy, readwrite) NSString *definitionExpression;
115 
119 @property (nonatomic, assign, readwrite) double maxScale;
120 
124 @property (nonatomic, assign, readwrite) double minScale;
125 
129 @property (nonatomic, copy, readwrite) NSString *name;
130 
134 @property (nonatomic, assign, readwrite) float opacity;
135 
139 @property (nullable, nonatomic, strong, readwrite) AGSRenderer *renderer;
140 
144 @property (nonatomic, assign, readwrite) BOOL scaleSymbols;
145 
149 @property (nonatomic, assign, readwrite) BOOL labelsEnabled;
150 
154 @property (nonatomic, strong, readonly) NSMutableArray<AGSLabelDefinition*> *labelDefinitions;
155 
162 @property (nullable, nonatomic, strong, readonly) AGSServiceFeatureTable *table;
163 
164 #pragma mark -
165 #pragma mark methods
166 
167 
168 @end
Information about an individual layer or table in a dynamic ArcGIS Map Service.
Definition: AGSArcGISMapImageSublayer.h:47
AGSServiceFeatureTable * table
Definition: AGSArcGISMapImageSublayer.h:162
double minScale
Definition: AGSArcGISMapImageSublayer.h:124
AGSSublayerSource * source
Definition: AGSArcGISMapImageSublayer.h:96
float opacity
Definition: AGSArcGISMapImageSublayer.h:134
BOOL labelsEnabled
Definition: AGSArcGISMapImageSublayer.h:149
NSString * name
Definition: AGSArcGISMapImageSublayer.h:129
NSString * definitionExpression
Definition: AGSArcGISMapImageSublayer.h:114
double maxScale
Definition: AGSArcGISMapImageSublayer.h:119
BOOL scaleSymbols
Definition: AGSArcGISMapImageSublayer.h:144
NSMutableArray< AGSLabelDefinition * > * labelDefinitions
Definition: AGSArcGISMapImageSublayer.h:154
AGSRenderer * renderer
Definition: AGSArcGISMapImageSublayer.h:139
BOOL visibleByDefault
Definition: AGSArcGISMapImageSublayer.h:101
Information about an individual layer or table in ArcGIS Map Service.
Definition: AGSArcGISSublayer.h:43
An object that defines the text, appearance, and position of labels for features within a given scale...
Definition: AGSLabelDefinition.h:224
An abstract base class for renderers.
Definition: AGSRenderer.h:55
A dataset from an individual layer or table in an ArcGIS map or feature service.
Definition: AGSServiceFeatureTable.h:117
Base class for sources of a map image sublayer.
Definition: AGSSublayerSource.h:44