ArcGIS Runtime SDK for iOS
100.15
|
A geoprocessing parameter for feature data.
Instances of this class represent a parameter for feature data that can be used as input to a geoprocessing job or returned as the result of the job.
Instance Methods | |
(id< AGSCancelable >) | - fetchOutputFeaturesWithCompletion: |
(instancetype) | - initWithFeatureSet: |
(instancetype) | - initWithURL: |
Class Methods | |
(instancetype) | + geoprocessingFeatures |
(instancetype) | + geoprocessingFeaturesWithFeatureSet: |
(instancetype) | + geoprocessingFeaturesWithURL: |
(instancetype) | + geoprocessingParameter |
Properties | |
BOOL | canFetchOutputFeatures |
id< AGSFeatureSet > | features |
AGSGeoprocessingParameterType | type |
NSURL * | URL |
- (id<AGSCancelable>) fetchOutputFeaturesWithCompletion: | (void(^)(id< AGSFeatureSet > __nullable features, NSError *__nullable error)) | completion |
Fetches features from the ArcGIS Feature service at URL
. This can be used to fetch features if features is nil. It is not necessary to call this if features is already populated.
completion | block that is invoked with the features if the operation succeeds, or with an error if the operation fails. |
+ (instancetype) geoprocessingFeatures |
+ (instancetype) geoprocessingFeaturesWithFeatureSet: | (id< AGSFeatureSet >) | featureSet |
Initialize the parameter with given features
featureSet | containing the feature data for this parameter |
+ (instancetype) geoprocessingFeaturesWithURL: | (NSURL *) | URL |
Initialize the parameter with given url
URL | to an ArcGIS Feature service containing the feature data for this parameter |
+ (instancetype) geoprocessingParameter |
- (instancetype) initWithFeatureSet: | (id< AGSFeatureSet >) | featureSet |
Initialize the parameter with given features
featureSet | containing the feature data for this parameter |
- (instancetype) initWithURL: | (NSURL *) | URL |
Initialize the parameter with given url
URL | to an ArcGIS Feature service containing the feature data for this parameter |
|
readnonatomicassign |
Indicates whether this parameter represents feature data in an ArcGIS feature service that can be fetched using fetchOutputFeaturesWithCompletion:
|
readwritenonatomicstrong |
The feature data for this parameter
|
readnonatomicassigninherited |
The data type of the parameter.
|
readwritenonatomicstrong |
URL to an ArcGIS Feature service contianing the feature data for this parameter. Only applicable if this parameter was initialized with a URL.
- fetchOutputFeaturesWithCompletion:
to fetch the features from the service