Class describing one node of the evaluated route. More...
Public Member Functions | |
| RouteNode (LocationPoint point, float weight, float distance, ArrayList< RouteEvent > events) | |
| Default constructor for class RouteNode. | |
| LocationPoint | getPoint () |
| Location point of this node. | |
| float | getWeight () |
| Route cost/weight value at this node. | |
| float | getDistance () |
| Distance from route start to this node (meters). | |
| ArrayList< RouteEvent > | getEvents () |
| Events associated with this node. | |
| String | toString () |
Class describing one node of the evaluated route.
Referenced from RoutePath.
Definition at line 17 of file RouteNode.java.
|
inline |
Default constructor for class RouteNode.
Definition at line 31 of file RouteNode.java.
|
inline |
Distance from route start to this node (meters).
Java code snippet:
Kotlin code snippet:
Definition at line 89 of file RouteNode.java.
|
inline |
Events associated with this node.
Java code snippet:
Kotlin code snippet:
Definition at line 106 of file RouteNode.java.
|
inline |
Location point of this node.
Java code snippet:
Kotlin code snippet:
Definition at line 55 of file RouteNode.java.
|
inline |
Route cost/weight value at this node.
Java code snippet:
Kotlin code snippet:
Definition at line 72 of file RouteNode.java.
|
inline |
Definition at line 111 of file RouteNode.java.