ArcGIS Runtime SDK for iOS: AGSGeodeticDistanceResult.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSGeodeticDistanceResult.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 AGSLinearUnit;
22 @class AGSAngularUnit;
23  //Required for Globals API doc
25 
34 
35 
36 #pragma mark -
37 #pragma mark properties
38 
42 @property (nonatomic, assign, readonly) double distance;
43 
47 @property (nullable, nonatomic, strong, readonly) AGSLinearUnit *distanceUnit;
48 
53 @property (nonatomic, assign, readonly) double azimuth1;
54 
59 @property (nonatomic, assign, readonly) double azimuth2;
60 
64 @property (nullable, nonatomic, strong, readonly) AGSAngularUnit *azimuthUnit;
65 
66 
67 @end
Represents angular units.
Definition: AGSAngularUnit.h:44
double azimuth1
Definition: AGSGeodeticDistanceResult.h:53
double azimuth2
Definition: AGSGeodeticDistanceResult.h:59
AGSAngularUnit * azimuthUnit
Definition: AGSGeodeticDistanceResult.h:64
Represents linear units.
Definition: AGSLinearUnit.h:50
AGSLinearUnit * distanceUnit
Definition: AGSGeodeticDistanceResult.h:47
Definition: AGSObject.h:21
A result of AGSGeometryEngine::geodeticDistanceBetweenPoint1:point2:inUnits: method.
Definition: AGSGeodeticDistanceResult.h:33
double distance
Definition: AGSGeodeticDistanceResult.h:42