ArcGIS Runtime SDK for iOS: AGSFeatureCollectionLayer.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSFeatureCollectionLayer.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/AGSLayer.h>
20 
22 @class AGSFeatureLayer;
23 
24  //Required for Globals API doc
26 
70 
71 
72 
73 #pragma mark -
74 #pragma mark initializers
75 
76 
77 
83 -(instancetype)initWithFeatureCollection:(AGSFeatureCollection *)featureCollection;
84 
90 +(instancetype)featureCollectionLayerWithFeatureCollection:(AGSFeatureCollection *)featureCollection;
91 
92 #pragma mark -
93 #pragma mark properties
94 
98 @property (nonatomic, strong, readonly) AGSFeatureCollection *featureCollection;
99 
103 @property (nonatomic, copy, readonly) NSArray<AGSFeatureLayer*> *layers;
104 
105 #pragma mark -
106 #pragma mark methods
107 
108 
109 
110 @end
A layer that can visualize vector/feature data.
Definition: AGSFeatureLayer.h:149
NSArray< AGSFeatureLayer * > * layers
Definition: AGSFeatureCollectionLayer.h:103
A layer that can visualize a feature collection.
Definition: AGSFeatureCollectionLayer.h:69
An abstract base class for all layers.
Definition: AGSLayer.h:169
A lightweight collection of features.
Definition: AGSFeatureCollection.h:39