ArcGIS Runtime SDK for iOS: AGSENCLayer.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSENCLayer.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/AGSLayer.h>
27 
29 @class AGSENCCell;
30 @class AGSENCFeature;
31  //Required for Globals API doc
33 
56 @interface AGSENCLayer : AGSLayer
57 
58 
59 
60 #pragma mark -
61 #pragma mark initializers
62 
63 
64 
70 -(instancetype)initWithCell:(AGSENCCell*)cell;
71 
77 +(instancetype)ENCLayerWithCell:(AGSENCCell*)cell;
78 
79 #pragma mark -
80 #pragma mark properties
81 
85 @property (nullable, nonatomic, strong, readonly) AGSENCCell *cell;
86 
87 #pragma mark -
88 #pragma mark methods
89 
93 -(void)clearSelection;
94 
99 -(void)selectFeature:(AGSENCFeature *)feature;
100 
101 
102 
103 @end
An ENC Cell.
Definition: AGSENCCell.h:42
Environment settings for ENC data.
Definition: AGSENCEnvironmentSettings.h:40
An ENC feature.
Definition: AGSENCFeature.h:37
A layer that displays ENC data.
Definition: AGSENCLayer.h:57
AGSENCCell * cell
Definition: AGSENCLayer.h:85
void clearSelection()
An abstract base class for all layers.
Definition: AGSLayer.h:201