Class is used for storing the route path between two points in location. More...
Inheritance diagram for com.navigine.idl.java.RoutePath:Public Member Functions | |
| abstract RoutePath | head (float advance) |
| Returns the leading segment of the route up to advance meters. | |
| abstract RoutePath | tail (float advance) |
| Returns the route segment after advance meters. | |
| abstract ArrayList< RouteNode > | nodes () |
| Returns route nodes with points and events. | |
| abstract float | getLength () |
| Total route length in meters. | |
| abstract float | getWeight () |
| Total route weight/cost. | |
Class is used for storing the route path between two points in location.
Referenced from: AsyncRouteListener, AsyncRouteManager, Location, RouteListener, RouteManager
Definition at line 17 of file RoutePath.java.
|
abstract |
Total route length in meters.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.RoutePathBinding.
|
abstract |
Total route weight/cost.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.RoutePathBinding.
|
abstract |
Returns the leading segment of the route up to advance meters.
| advance | distance along route (meters). |
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.RoutePathBinding.
|
abstract |
Returns route nodes with points and events.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.RoutePathBinding.
|
abstract |
Returns the route segment after advance meters.
| advance | distance along route (meters). |
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.RoutePathBinding.