The QGeoRouteSegment class represents a segment of a route. 更多...
头: | #include <QGeoRouteSegment> |
qmake: | QT += location |
Since: | Qt 5.6 |
QGeoRouteSegment () | |
QGeoRouteSegment (const QGeoRouteSegment & other ) | |
~QGeoRouteSegment () | |
qreal | distance () const |
bool | isLegLastSegment () const |
bool | isValid () const |
QGeoManeuver | maneuver () const |
QGeoRouteSegment | nextRouteSegment () const |
QList<QGeoCoordinate> | path () const |
void | setDistance (qreal distance ) |
void | setManeuver (const QGeoManeuver & maneuver ) |
void | setNextRouteSegment (const QGeoRouteSegment & routeSegment ) |
void | setPath (const QList<QGeoCoordinate> & path ) |
void | setTravelTime (int secs ) |
int | travelTime () const |
bool | operator!= (const QGeoRouteSegment & other ) const |
QGeoRouteSegment & | operator= (const QGeoRouteSegment & other ) |
bool | operator== (const QGeoRouteSegment & other ) const |
QExplicitlySharedDataPointer<QGeoRouteSegmentPrivate> & | d () |
The QGeoRouteSegment class represents a segment of a route.
A QGeoRouteSegment instance has information about the physical layout of the route segment, the length of the route and estimated time required to traverse the route segment and an optional QGeoManeuver associated with the beginning of the route segment.
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.
Constructs an invalid route segment object.
The route segment will remain invalid until one of setNextRouteSegment (), setTravelTime (), setDistance (), setPath () 或 setManeuver () 被调用。
Constructs a route segment object from the contents of other .
Destroys this route segment object.
[protected]
QExplicitlySharedDataPointer
<
QGeoRouteSegmentPrivate
> &QGeoRouteSegment::
d
()
Returns the private implementation.
Returns the distance covered by this segment of the route, in meters.
另请参阅 setDistance ().
Returns whether this route segment is the last segment of a route leg.
该函数在 Qt 5.12 引入。
Returns whether this route segment is valid or not.
若 nextRouteSegment () is called on the last route segment of a route, the returned value will be an invalid route segment.
Returns the maneuver for this route segment.
Will return an invalid QGeoManeuver if no information has been attached to the starting point of this route segment.
另请参阅 setManeuver ().
Returns the next route segment in the route.
Will return an invalid route segment if this is the last route segment in the route.
另请参阅 setNextRouteSegment ().
Returns the geometric shape of this route segment of the route.
The coordinates should be listed in the order in which they would be traversed by someone traveling along this segment of the route.
另请参阅 setPath ().
Sets the distance covered by this segment of the route, in meters, to distance .
另请参阅 distance ().
Sets the maneuver for this route segment to maneuver .
另请参阅 maneuver ().
Sets the next route segment in the route to routeSegment .
另请参阅 nextRouteSegment ().
Sets the geometric shape of this segment of the route to path .
The coordinates in path should be listed in the order in which they would be traversed by someone traveling along this segment of the route.
另请参阅 path ().
Sets the estimated amount of time it will take to traverse this segment of the route, in seconds, to secs .
另请参阅 travelTime ().
Returns the estimated amount of time it will take to traverse this segment of the route, in seconds.
另请参阅 setTravelTime ().
Returns whether this route segment and other are not equal.
值 nextRouteSegment () is not considered in the comparison.
赋值 other to this route segment object and then returns a reference to this route segment object.
Returns whether this route segment and other 相等。
值 nextRouteSegment () is not considered in the comparison.