ArcGIS Runtime SDK for iOS: AGSTrackingProgress.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSTrackingProgress.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  //Required for Globals API doc
20 
21 #import <ArcGIS/AGSObject.h>
22 
23 
24 
25 @class AGSPolyline;
26 @class AGSTrackingDistance;
27 
33 
34 #pragma mark -
35 #pragma mark initializers
36 
37 
38 
39 #pragma mark -
40 #pragma mark properties
41 
46 @property (nonatomic, strong, readonly) AGSTrackingDistance *remainingDistance;
47 
51 @property (nonatomic, strong, readonly) AGSPolyline *remainingGeometry;
52 
57 @property (nonatomic, assign, readonly) double remainingTime;
58 
62 @property (nonatomic, strong, readonly) AGSPolyline *traversedGeometry;
63 
64 #pragma mark -
65 #pragma mark methods
66 
67 @end
68 
69 
AGSPolyline * traversedGeometry
Definition: AGSTrackingProgress.h:62
Defines tracking progress (passed and remaining geometries, remaining time and distance) ...
Definition: AGSTrackingProgress.h:32
A multipart linear shape.
Definition: AGSPolyline.h:49
AGSPolyline * remainingGeometry
Definition: AGSTrackingProgress.h:51
Definition: AGSObject.h:21
AGSTrackingDistance * remainingDistance
Definition: AGSTrackingProgress.h:46
Defines tracking distance.
Definition: AGSTrackingDistance.h:34
double remainingTime
Definition: AGSTrackingProgress.h:57