Class TrackingStatus.Progress
- java.lang.Object
-
- com.esri.arcgisruntime.navigation.TrackingStatus.Progress
-
- Enclosing class:
- TrackingStatus
public static class TrackingStatus.Progress extends java.lang.ObjectDefines tracking progress (passed and remaining geometries, remaining time and distance).- Since:
- 100.6.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TrackingStatus.DistancegetRemainingDistance()Gets the distance still to be traversed.PolylinegetRemainingGeometry()Gets the polyline geometry still to be traversed.doublegetRemainingTime()Gets the time to traverse remaining geometry/distance in minutes.PolylinegetTraversedGeometry()Gets the polyline geometry already traversed.
-
-
-
Method Detail
-
getRemainingDistance
public TrackingStatus.Distance getRemainingDistance()
Gets the distance still to be traversed.- Returns:
- the distance still to be traversed
- Since:
- 100.6.0
-
getRemainingGeometry
public Polyline getRemainingGeometry()
Gets the polyline geometry still to be traversed.- Returns:
- the polyline geometry still to be traversed
- Since:
- 100.6.0
-
getRemainingTime
public double getRemainingTime()
Gets the time to traverse remaining geometry/distance in minutes.- Returns:
- the time to traverse remaining geometry/distance in minutes
- Since:
- 100.6.0
-
getTraversedGeometry
public Polyline getTraversedGeometry()
Gets the polyline geometry already traversed.- Returns:
- the polyline geometry already traversed
- Since:
- 100.6.0
-
-