ArcGIS Runtime SDK for iOS: AGSShapefileFeatureTable.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSShapefileFeatureTable.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/AGSFeatureTable.h>
20 
21 @class AGSShapefileInfo;
22  //Required for Globals API doc
24 
36 
37 
38 
39 #pragma mark -
40 #pragma mark initializers
41 
42 
43 
54 -(instancetype)initWithFileURL:(NSURL *)fileURL;
55 
66 +(instancetype)shapefileFeatureTableWithFileURL:(NSURL *)fileURL;
67 
79 -(instancetype)initWithName:(NSString *)name;
80 
92 +(instancetype)shapefileFeatureTableWithName:(NSString *)name;
93 
94 #pragma mark -
95 #pragma mark properties
96 
100 @property (nullable, nonatomic, strong, readonly) AGSShapefileInfo *shapefileInfo;
101 
105 @property (nonatomic, strong, readonly) NSURL *fileURL;
106 
112 @property (nonatomic, assign, readonly, getter=isSpatialIndexEnabled) BOOL spatialIndexEnabled;
113 
114 #pragma mark -
115 #pragma mark methods
116 
121 -(void)close;
122 
123 
124 
125 @end
126 
BOOL spatialIndexEnabled
Definition: AGSShapefileFeatureTable.h:112
A shapefile dataset containing geographic features or non-spatial records.
Definition: AGSShapefileFeatureTable.h:35
A source for dataset containing geographic features or non-spatial records.
Definition: AGSFeatureTable.h:59
NSURL * fileURL
Definition: AGSShapefileFeatureTable.h:105
Metadata for a shapefile dataset.
Definition: AGSShapefileInfo.h:30
AGSShapefileInfo * shapefileInfo
Definition: AGSShapefileFeatureTable.h:100