ArcGIS Runtime SDK for iOS: AGSOGCFeatureCollectionTable.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSOGCFeatureCollectionTable.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/AGSFeatureTable.h>
29 #import <ArcGIS/AGSRemoteResource.h>
30 #import <ArcGIS/AGSCancelable.h>
31 
32 
33 
36 @class AGSQueryParameters;
37 
70 
71 #pragma mark -
72 #pragma mark initializers
73 
74 
75 
80 - (instancetype)initWithFeatureCollectionInfo:(AGSOGCFeatureCollectionInfo *)featureCollectionInfo;
81 
86 + (instancetype)OGCFeatureCollectionTableWithFeatureCollectionInfo:(AGSOGCFeatureCollectionInfo *)featureCollectionInfo;
87 
93 - (instancetype)initWithURL:(NSURL *)URL
94  collectionID:(NSString *)collectionID;
95 
101 + (instancetype)OGCFeatureCollectionTableWithURL:(NSURL *)URL
102  collectionID:(NSString *)collectionID;
103 
104 #pragma mark -
105 #pragma mark properties
106 
110 @property (nullable, nonatomic, strong, readonly) AGSOGCFeatureCollectionInfo *featureCollectionInfo;
111 
116 @property (nonatomic, assign, readwrite) AGSFeatureRequestMode featureRequestMode;
117 
118 #pragma mark -
119 #pragma mark methods
120 
133 - (id<AGSCancelable>)populateFromServiceWithParameters:(nullable AGSQueryParameters *)parameters
134  clearCache:(BOOL)clearCache
135  outfields:(nullable NSArray<NSString *> *)outfields
136  completion:(void(^)(AGSFeatureQueryResult * __nullable result, NSError * __nullable error))completion;
137 
138 @end
139 
140 
AGSFeatureRequestMode
Definition: AGSFeatureTable.h:40
Result of queries that return features.
Definition: AGSFeatureQueryResult.h:49
A source for dataset containing geographic features or non-spatial records.
Definition: AGSFeatureTable.h:65
Metadata of a layer (feature collection) in an OGC API - Features service.
Definition: AGSOGCFeatureCollectionInfo.h:42
An OGC API - Features feature collection table.
Definition: AGSOGCFeatureCollectionTable.h:69
AGSFeatureRequestMode featureRequestMode
Definition: AGSOGCFeatureCollectionTable.h:116
AGSOGCFeatureCollectionInfo * featureCollectionInfo
Definition: AGSOGCFeatureCollectionTable.h:110
Parameters to perform a query using AGSFeatureTable.
Definition: AGSQueryParameters.h:45
A protocol exposed by operations that allow cancellation.
Definition: AGSCancelable.h:38
A protocol adopted by classes that access remote network resources that have the potential to be secu...
Definition: AGSRemoteResource.h:40