QGeoManeuver Class ReferenceThe QGeoManeuver class represents the information relevant to the point at which two QGeoRouteSegments meet. More... #include <QGeoManeuver> Public Types
Public Functions
Detailed DescriptionThe QGeoManeuver class represents the information relevant to the point at which two QGeoRouteSegments meet. QGeoRouteSegment instances can be thought of as edges on a routing graph, with QGeoManeuver instances as optional labels attached to the vertices of the graph. The most interesting information help in a QGeoManeuver instance is normally the textual navigation to provide and the position at which to provide it, accessible by instructionText() and position() respectively. It is also possible to determine if a routing waypoint has been passed by checking if waypoint() returns a valid QGeoCoordinate. Member Type Documentation
|
Constant | Value | Description |
---|---|---|
QGeoManeuver::NoDirection | 0 | There is no direction associated with the instruction text. |
QGeoManeuver::DirectionForward | 1 | The instruction indicates that the direction of travel does not need to change. |
QGeoManeuver::DirectionBearRight | 2 | The instruction indicates that the direction of travel should bear to the right. |
QGeoManeuver::DirectionLightRight | 3 | The instruction indicates that a light turn to the right is required. |
QGeoManeuver::DirectionRight | 4 | The instruction indicates that a turn to the right is required. |
QGeoManeuver::DirectionHardRight | 5 | The instruction indicates that a hard turn to the right is required. |
QGeoManeuver::DirectionUTurnRight | 6 | The instruction indicates that a u-turn to the right is required. |
QGeoManeuver::DirectionUTurnLeft | 7 | The instruction indicates that a u-turn to the left is required. |
QGeoManeuver::DirectionHardLeft | 8 | The instruction indicates that a hard turn to the left is required. |
QGeoManeuver::DirectionLeft | 9 | The instruction indicates that a turn to the left is required. |
QGeoManeuver::DirectionLightLeft | 10 | The instruction indicates that a light turn to the left is required. |
QGeoManeuver::DirectionBearLeft | 11 | The instruction indicates that the direction of travel should bear to the left. |
Constructs a invalid maneuver object.
The maneuver will remain invalid until one of setPosition(), setInstructionText(), setDirection(), setTimeToNextInstruction(), setDistanceToNextInstruction() or setWaypoint() is called.
Constructs a maneuver object from the contents of other.
Destroys this manevuer object.
Returns the direction associated with the associated instruction.
See also setDirection().
Returns the distance, in metres, between the point at which the associated instruction was issued and the point that the next instruction should be issued.
See also setDistanceToNextInstruction().
Returns the textual navigation instructions.
See also setInstructionText().
Returns whether this maneuver is valid or not.
Invalid maneuvers are used when there is no information that needs to be attached to the endpoint of a QGeoRouteSegment instance.
Returns the position where instructionText() should be displayed.
See also setPosition().
Sets the direction associated with the associated instruction to direction.
See also direction().
Sets the distance, in metres, between the point at which the associated instruction was issued and the point that the next instruction should be issued to distance.
See also distanceToNextInstruction().
Sets the textual navigation instructions to instructionText.
See also instructionText().
Sets the position where instructionText() should be displayed to position.
See also position().
Sets the estimated time it will take to travel from the point at which the associated instruction was issued and the point that the next instruction should be issued, in seconds, to secs.
See also timeToNextInstruction().
Sets the waypoint associated with this maneuver to coordinate.
See also waypoint().
Returns the estimated time it will take to travel from the point at which the associated instruction was issued and the point that the next instruction should be issued, in seconds.
See also setTimeToNextInstruction().
Returns the waypoint associated with this maneuver.
If there is not waypoint associated with this maneuver an invalid QGeoCoordinate will be returned.
See also setWaypoint().
Returns whether this maneuver is not equal to other.
Assigns other to this maneuver object and then returns a reference to this maneuver object.
Returns whether this maneuver is equal to other.