ArcGIS Runtime SDK for iOS: AGSSuggestParameters.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSSuggestParameters.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 AGSPoint;
22 @class AGSGeometry;
23  //Required for Globals API doc
25 
33 
34 
35 #pragma mark -
36 #pragma mark initializers
37 
38 +(instancetype)suggestParameters;
39 
40 #pragma mark -
41 #pragma mark properties
42 
47 @property (nonatomic, copy, readwrite) NSArray<NSString*> *categories;
48 
54 @property (nonatomic, copy, readwrite) NSString *countryCode;
55 
59 @property (nonatomic, assign, readwrite) NSInteger maxResults;
60 
64 @property (nullable, nonatomic, strong, readwrite) AGSPoint *preferredSearchLocation;
65 
69 @property (nullable, nonatomic, strong, readwrite) AGSGeometry *searchArea;
70 
71 
72 @end
Defines common members for all specific types of geometry.
Definition: AGSGeometry.h:106
NSArray< NSString * > * categories
Definition: AGSSuggestParameters.h:47
instancetype suggestParameters()
AGSPoint * preferredSearchLocation
Definition: AGSSuggestParameters.h:64
Input parameters for a suggest operation on AGSLocatorTask.
Definition: AGSSuggestParameters.h:32
AGSGeometry * searchArea
Definition: AGSSuggestParameters.h:69
NSInteger maxResults
Definition: AGSSuggestParameters.h:59
Definition: AGSObject.h:21
NSString * countryCode
Definition: AGSSuggestParameters.h:54
A location defined by x and y (and optionally z) coordinates.
Definition: AGSPoint.h:57