ArcGIS Runtime SDK for iOS: AGSAnnotationLayer.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSAnnotationLayer.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  //Required for Globals API doc
20 
21 #import <ArcGIS/AGSLayer.h>
22 #import <ArcGIS/AGSRemoteResource.h>
23 
24 
25 
27 @class AGSItem;
28 
72 
73 #pragma mark -
74 #pragma mark initializers
75 
76 
77 
85 -(instancetype)initWithFeatureTable:(AGSArcGISFeatureTable *)featureTable;
86 
94 +(instancetype)annotationLayerWithFeatureTable:(AGSArcGISFeatureTable *)featureTable;
95 
102 -(instancetype)initWithItem:(AGSItem *)item
103  serviceLayerID:(NSInteger)serviceLayerID;
104 
111 +(instancetype)annotationLayerWithItem:(AGSItem *)item
112  serviceLayerID:(NSInteger)serviceLayerID;
113 
119 -(instancetype)initWithURL:(NSURL *)URL;
120 
126 +(instancetype)annotationLayerWithURL:(NSURL *)URL;
127 
128 #pragma mark -
129 #pragma mark properties
130 
134 @property (nullable, nonatomic, strong, readonly) AGSArcGISFeatureTable *featureTable;
135 
140 @property (nonatomic, assign, readonly) NSInteger serviceLayerID;
141 
151 @property (nonatomic, assign, readonly) double referenceScale;
152 
153 #pragma mark -
154 #pragma mark methods
155 
156 @end
157 
158 
double referenceScale
Definition: AGSAnnotationLayer.h:151
NSInteger serviceLayerID
Definition: AGSAnnotationLayer.h:140
Object representing a unit of content.
Definition: AGSItem.h:36
An ArcGIS specific source for dataset containing geographic features or non-spatial records...
Definition: AGSArcGISFeatureTable.h:56
A layer that can visualize annotation text data. Annotation can be used to symbolize text on your map...
Definition: AGSAnnotationLayer.h:71
An abstract base class for all layers.
Definition: AGSLayer.h:169
A protocol adopted by classes that access remote network resources that have the potential to be secu...
Definition: AGSRemoteResource.h:34