ArcGIS Runtime SDK for iOS: AGSLabelingInfo.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSLabelingInfo.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  //Required for Globals API doc
26 
27 #import <Foundation/Foundation.h>
28 #import <ArcGIS/AGSObject.h>
29 
30 
31 
36 typedef NS_ENUM(NSInteger, AGSLabelingPlacement) {
64 };
65 
66 @class AGSSymbol;
67 
80 
81 #pragma mark -
82 #pragma mark initializers
83 
84 
85 
86 #pragma mark -
87 #pragma mark properties
88 
97 @property (nonatomic, copy, readonly) NSString *labelExpression;
98 
107 @property (nonatomic, assign, readonly) AGSLabelingPlacement labelPlacement;
108 
116 @property (nonatomic, assign, readonly) double maxScale;
117 
125 @property (nonatomic, assign, readonly) double minScale;
126 
131 @property (nullable, nonatomic, strong, readonly) AGSSymbol *symbol;
132 
139 @property (nonatomic, assign, readonly) BOOL useCodedValues;
140 
151 @property (nonatomic, copy, readonly) NSString *where;
152 
153 @end
154 
155 
AGSLabelingPlacement
Definition: AGSLabelingInfo.h:36
@ AGSLabelingPlacementLineCenterAlong
Definition: AGSLabelingInfo.h:50
@ AGSLabelingPlacementLineCenterStart
Definition: AGSLabelingInfo.h:53
@ AGSLabelingPlacementPointAboveLeft
Definition: AGSLabelingInfo.h:55
@ AGSLabelingPlacementPointAboveCenter
Definition: AGSLabelingInfo.h:54
@ AGSLabelingPlacementPointBelowCenter
Definition: AGSLabelingInfo.h:57
@ AGSLabelingPlacementLineAboveAlong
Definition: AGSLabelingInfo.h:40
@ AGSLabelingPlacementLineBelowBefore
Definition: AGSLabelingInfo.h:46
@ AGSLabelingPlacementUnknown
Definition: AGSLabelingInfo.h:38
@ AGSLabelingPlacementLineCenterBefore
Definition: AGSLabelingInfo.h:51
@ AGSLabelingPlacementLineAboveBefore
Definition: AGSLabelingInfo.h:41
@ AGSLabelingPlacementLineCenterAfter
Definition: AGSLabelingInfo.h:49
@ AGSLabelingPlacementPolygonAlwaysHorizontal
Definition: AGSLabelingInfo.h:63
@ AGSLabelingPlacementAutomatic
Definition: AGSLabelingInfo.h:37
@ AGSLabelingPlacementPointBelowRight
Definition: AGSLabelingInfo.h:59
@ AGSLabelingPlacementLineBelowStart
Definition: AGSLabelingInfo.h:48
@ AGSLabelingPlacementPointCenterLeft
Definition: AGSLabelingInfo.h:61
@ AGSLabelingPlacementPointBelowLeft
Definition: AGSLabelingInfo.h:58
@ AGSLabelingPlacementPointCenterCenter
Definition: AGSLabelingInfo.h:60
@ AGSLabelingPlacementLineAboveAfter
Definition: AGSLabelingInfo.h:39
@ AGSLabelingPlacementLineBelowEnd
Definition: AGSLabelingInfo.h:47
@ AGSLabelingPlacementLineAboveStart
Definition: AGSLabelingInfo.h:43
@ AGSLabelingPlacementLineBelowAlong
Definition: AGSLabelingInfo.h:45
@ AGSLabelingPlacementLineCenterEnd
Definition: AGSLabelingInfo.h:52
@ AGSLabelingPlacementPointAboveRight
Definition: AGSLabelingInfo.h:56
@ AGSLabelingPlacementPointCenterRight
Definition: AGSLabelingInfo.h:62
@ AGSLabelingPlacementLineAboveEnd
Definition: AGSLabelingInfo.h:42
@ AGSLabelingPlacementLineBelowAfter
Definition: AGSLabelingInfo.h:44
An object that defines the text, appearance and position of labels for features for a given scale ran...
Definition: AGSLabelingInfo.h:80
double minScale
Definition: AGSLabelingInfo.h:125
NSString * where
Definition: AGSLabelingInfo.h:151
BOOL useCodedValues
Definition: AGSLabelingInfo.h:139
NSString * labelExpression
Definition: AGSLabelingInfo.h:97
AGSSymbol * symbol
Definition: AGSLabelingInfo.h:131
AGSLabelingPlacement labelPlacement
Definition: AGSLabelingInfo.h:107
double maxScale
Definition: AGSLabelingInfo.h:116
Definition: AGSObject.h:28
A symbol used to display a graphic or a feature.
Definition: AGSSymbol.h:93