ArcGIS Runtime SDK for iOS: AGSGeocodeParameters.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSGeocodeParameters.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/AGSObject.h>
20 
21 @class AGSSpatialReference;
22 @class AGSPoint;
23 @class AGSGeometry;
24  //Required for Globals API doc
26 
35 
36 
37 #pragma mark -
38 #pragma mark initializers
39 
40 +(instancetype)geocodeParameters;
41 
42 #pragma mark -
43 #pragma mark properties
44 
49 @property (nonatomic, copy, readwrite) NSArray<NSString*> *resultAttributeNames;
50 
55 @property (nonatomic, copy, readwrite) NSArray<NSString*> *categories;
56 
62 @property (nonatomic, copy, readwrite) NSString *countryCode;
63 
69 @property (nonatomic, assign, readwrite) BOOL forStorage;
70 
75 @property (nonatomic, assign, readwrite) NSInteger maxResults;
76 
81 @property (nonatomic, assign, readwrite) double minScore;
82 
87 @property (nonatomic, copy, readwrite) NSString *outputLanguageCode;
88 
92 @property (nullable, nonatomic, strong, readwrite) AGSSpatialReference *outputSpatialReference;
93 
97 @property (nullable, nonatomic, strong, readwrite) AGSPoint *preferredSearchLocation;
98 
102 @property (nullable, nonatomic, strong, readwrite) AGSGeometry *searchArea;
103 
104 
105 @end
AGSSpatialReference * outputSpatialReference
Definition: AGSGeocodeParameters.h:92
NSString * countryCode
Definition: AGSGeocodeParameters.h:62
Defines common members for all specific types of geometry.
Definition: AGSGeometry.h:106
Parameters to refine gecoding results returned by AGSLocatorTask.
Definition: AGSGeocodeParameters.h:34
instancetype geocodeParameters()
BOOL forStorage
Definition: AGSGeocodeParameters.h:69
double minScore
Definition: AGSGeocodeParameters.h:81
Represents the spatial reference of a geometry.
Definition: AGSSpatialReference.h:39
NSArray< NSString * > * resultAttributeNames
Definition: AGSGeocodeParameters.h:49
Definition: AGSObject.h:21
NSInteger maxResults
Definition: AGSGeocodeParameters.h:75
AGSGeometry * searchArea
Definition: AGSGeocodeParameters.h:102
AGSPoint * preferredSearchLocation
Definition: AGSGeocodeParameters.h:97
NSString * outputLanguageCode
Definition: AGSGeocodeParameters.h:87
A location defined by x and y (and optionally z) coordinates.
Definition: AGSPoint.h:57
NSArray< NSString * > * categories
Definition: AGSGeocodeParameters.h:55