ArcGIS Runtime SDK for iOS: AGSArcGISSublayer.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSArcGISSublayer.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/AGSLoadableBase.h>
27 #import <ArcGIS/AGSLayerContent.h>
28 #import <ArcGIS/AGSPopupSource.h>
29 
30 @class AGSPopupDefinition;
32 @class AGSRenderer;
33  //Required for Globals API doc
35 
44 
45 
46 
47 #pragma mark -
48 #pragma mark initializers
49 
50 #pragma mark -
51 #pragma mark properties
52 
64 @property (nonatomic, copy, readonly) NSString *definitionExpression;
65 
69 @property (nullable, nonatomic, strong, readonly) AGSArcGISMapServiceSublayerInfo *mapServiceSublayerInfo;
70 
74 @property (nonatomic, assign, readonly) float opacity;
75 
79 @property (nullable, nonatomic, strong, readonly) AGSRenderer *renderer;
80 
84 @property (nonatomic, assign, readonly) BOOL scaleSymbols;
85 
89 @property (nonatomic, assign, readonly) BOOL labelsEnabled;
90 
94 @property (nonatomic, assign, readonly) NSInteger sublayerID;
95 
99 @property (nonatomic, assign, readonly) double maxScale;
100 
104 @property (nonatomic, assign, readonly) double minScale;
105 
110 @property (nonatomic, strong, readonly) NSMutableArray<AGSArcGISSublayer*> *sublayers;
111 
112 #pragma mark -
113 #pragma mark methods
114 
115 
116 
117 @end
Information about an individual sublayer in an ArcGIS Map Service.
Definition: AGSArcGISMapServiceSublayerInfo.h:50
Information about an individual layer or table in ArcGIS Map Service.
Definition: AGSArcGISSublayer.h:43
NSMutableArray< AGSArcGISSublayer * > * sublayers
Definition: AGSArcGISSublayer.h:110
NSString * definitionExpression
Definition: AGSArcGISSublayer.h:64
NSInteger sublayerID
Definition: AGSArcGISSublayer.h:94
BOOL scaleSymbols
Definition: AGSArcGISSublayer.h:84
float opacity
Definition: AGSArcGISSublayer.h:74
BOOL labelsEnabled
Definition: AGSArcGISSublayer.h:89
AGSRenderer * renderer
Definition: AGSArcGISSublayer.h:79
double minScale
Definition: AGSArcGISSublayer.h:104
double maxScale
Definition: AGSArcGISSublayer.h:99
AGSArcGISMapServiceSublayerInfo * mapServiceSublayerInfo
Definition: AGSArcGISSublayer.h:69
A base class for loadables.
Definition: AGSLoadableBase.h:45
A popup definition.
Definition: AGSPopupDefinition.h:49
An abstract base class for renderers.
Definition: AGSRenderer.h:55
A protocol defining common properties and operations for layers.
Definition: AGSLayerContent.h:38
A source for popups.
Definition: AGSPopupSource.h:40