ArcGIS Runtime SDK for iOS: AGSDrawingInfo.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSDrawingInfo.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/AGSObject.h>
20 
21 @class AGSRenderer;
22 @class AGSLabelingInfo;
23  //Required for Globals API doc
25 
33 
34 
35 
36 #pragma mark -
37 #pragma mark initializers
38 
39 
40 
41 #pragma mark -
42 #pragma mark properties
43 
47 @property (nonatomic, copy, readonly) NSArray<AGSLabelingInfo*> *labelingInfo;
48 
52 @property (nonatomic, assign, readonly) double transparency;
53 
57 @property (nullable, nonatomic, strong, readonly) AGSRenderer *renderer;
58 
62 @property (nonatomic, assign, readonly) BOOL scaleSymbols;
63 
67 @property (nonatomic, assign, readonly) BOOL showLabels;
68 
69 
70 
71 @end
AGSRenderer * renderer
Definition: AGSDrawingInfo.h:57
An abstract base class for renderers.
Definition: AGSRenderer.h:48
double transparency
Definition: AGSDrawingInfo.h:52
An object that defines the text, appearance and position of labels for features for a given scale ran...
Definition: AGSLabelingInfo.h:70
Definition: AGSObject.h:21
BOOL showLabels
Definition: AGSDrawingInfo.h:67
BOOL scaleSymbols
Definition: AGSDrawingInfo.h:62
Drawing information about a sub-layer of map or feature service.
Definition: AGSDrawingInfo.h:32
NSArray< AGSLabelingInfo * > * labelingInfo
Definition: AGSDrawingInfo.h:47