Class is used for storing the route path events. More...
Public Member Functions | |
| RouteEvent (this.type, this.value, this.distance) | |
| Default constructor. | |
Public Attributes | |
| RouteEventType | type |
| Incoming event type RouteEventType. | |
| int | value |
| Indicates angle in degrees for TURN_LEFT/TURN_RIGHT types RouteEventType and target sublocation unique identifier if type is TRANSITION Sublocation. | |
| double | distance |
| distance from the beginning of the route to incoming event in meters. | |
Class is used for storing the route path events.
Referenced from: RoutePath.
Definition at line 20 of file route_event.dart.
| RouteEvent.RouteEvent | ( | this. | type, |
| this. | value, | ||
| this. | distance ) |
Default constructor.
| double RouteEvent.distance |
distance from the beginning of the route to incoming event in meters.
Dart code snippet:
Definition at line 53 of file route_event.dart.
| RouteEventType RouteEvent.type |
Incoming event type RouteEventType.
Dart code snippet:
Definition at line 32 of file route_event.dart.
| int RouteEvent.value |
Indicates angle in degrees for TURN_LEFT/TURN_RIGHT types RouteEventType and target sublocation unique identifier if type is TRANSITION Sublocation.
Dart code snippet:
Definition at line 43 of file route_event.dart.