ArcGIS Runtime SDK for iOS: AGSGeocodeResult.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSGeocodeResult.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 AGSEnvelope;
23  //Required for Globals API doc
25 
36 
37 
38 #pragma mark -
39 #pragma mark initializers
40 
41 
42 
43 #pragma mark -
44 #pragma mark properties
45 
51 @property (nullable, nonatomic, copy, readonly) NSDictionary<NSString*,id> *attributes;
52 
58 @property (nullable, nonatomic, strong, readonly) AGSPoint *displayLocation;
59 
64 @property (nullable, nonatomic, strong, readonly) AGSEnvelope *extent;
65 
70 @property (nullable, nonatomic, strong, readonly) AGSPoint *inputLocation;
71 
75 @property (nonatomic, copy, readonly) NSString *label;
76 
83 @property (nullable, nonatomic, strong, readonly) AGSPoint *routeLocation;
84 
90 @property (nonatomic, assign, readonly) double score;
91 
92 
93 @end
AGSPoint * displayLocation
Definition: AGSGeocodeResult.h:58
NSString * label
Definition: AGSGeocodeResult.h:75
A geometry that represents a rectangular shape.
Definition: AGSEnvelope.h:47
AGSEnvelope * extent
Definition: AGSGeocodeResult.h:64
AGSPoint * inputLocation
Definition: AGSGeocodeResult.h:70
AGSPoint * routeLocation
Definition: AGSGeocodeResult.h:83
Definition: AGSObject.h:21
NSDictionary< NSString *, id > * attributes
Definition: AGSGeocodeResult.h:51
double score
Definition: AGSGeocodeResult.h:90
A match candidate returned from an AGSLocatorTask geocode or reverse geocode operation.
Definition: AGSGeocodeResult.h:35
A location defined by x and y (and optionally z) coordinates.
Definition: AGSPoint.h:57