内容表

上一话题

QGeoRouteRequest

下一话题

QGeoRoutingManager

QGeoRouteSegment

QGeoRouteSegment class represents a segment of a route. 更多

Inheritance diagram of PySide2.QtLocation.QGeoRouteSegment

概要

函数

详细描述

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.

class QGeoRouteSegment

QGeoRouteSegment(other)

param other

QGeoRouteSegment

Constructs an invalid route segment object.

The route segment will remain invalid until one of setNextRouteSegment() , setTravelTime() , setDistance() , setPath() or setManeuver() 被调用。

Constructs a route segment object from the contents of other .

PySide2.QtLocation.QGeoRouteSegment. distance ( )
返回类型

qreal

Returns the distance covered by this segment of the route, in meters.

另请参阅

setDistance()

PySide2.QtLocation.QGeoRouteSegment. isLegLastSegment ( )
返回类型

bool

Returns whether this route segment is the last segment of a route leg.

PySide2.QtLocation.QGeoRouteSegment. isValid ( )
返回类型

bool

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.

PySide2.QtLocation.QGeoRouteSegment. maneuver ( )
返回类型

QGeoManeuver

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()

PySide2.QtLocation.QGeoRouteSegment. nextRouteSegment ( )
返回类型

QGeoRouteSegment

Returns the next route segment in the route.

Will return an invalid route segment if this is the last route segment in the route.

PySide2.QtLocation.QGeoRouteSegment. __ne__ ( other )
参数

other QGeoRouteSegment

返回类型

bool

Returns whether this route segment and other are not equal.

nextRouteSegment() is not considered in the comparison.

PySide2.QtLocation.QGeoRouteSegment. __eq__ ( other )
参数

other QGeoRouteSegment

返回类型

bool

Returns whether this route segment and other are equal.

nextRouteSegment() is not considered in the comparison.

PySide2.QtLocation.QGeoRouteSegment. path ( )
返回类型

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()

PySide2.QtLocation.QGeoRouteSegment. setDistance ( distance )
参数

distance qreal

Sets the distance covered by this segment of the route, in meters, to distance .

另请参阅

distance()

PySide2.QtLocation.QGeoRouteSegment. setManeuver ( maneuver )
参数

maneuver QGeoManeuver

Sets the maneuver for this route segment to maneuver .

另请参阅

maneuver()

PySide2.QtLocation.QGeoRouteSegment. setNextRouteSegment ( routeSegment )
参数

routeSegment QGeoRouteSegment

Sets the next route segment in the route to routeSegment .

PySide2.QtLocation.QGeoRouteSegment. setPath ( path )
参数

path

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()

PySide2.QtLocation.QGeoRouteSegment. setTravelTime ( secs )
参数

secs int

Sets the estimated amount of time it will take to traverse this segment of the route, in seconds, to secs .

另请参阅

travelTime()

PySide2.QtLocation.QGeoRouteSegment. travelTime ( )
返回类型

int

Returns the estimated amount of time it will take to traverse this segment of the route, in seconds.

另请参阅

setTravelTime()