RouteQuery QML Type

RouteQuery type is used to provide query parameters to a RouteModel . 更多...

导入语句: import QtLocation 5.3
Since: Qt Location 5.5

特性

方法

详细描述

A RouteQuery contains all the parameters necessary to make a request to a routing service, which can then populate the contents of a RouteModel .

These parameters describe key details of the route, such as waypoints to pass through, excludedAreas to avoid, the travelModes in use, as well as detailed preferences on how to optimize the route and what features to prefer or avoid along the path (such as toll roads, highways, etc).

RouteQuery objects are used exclusively to fill out the value of a RouteModel 's query property, which can then begin the retrieval process to populate the model.

用法范例

The following snipped shows an incomplete example of creating a RouteQuery object and setting it as the value of a RouteModel 's query 特性。

RouteQuery {
    id: aQuery
}
RouteModel {
    query: aQuery
    autoUpdate: false
}
					

For a more complete example, see the documentation for the RouteModel type, and the Mapviewer example.

另请参阅 RouteModel .

特性文档编制

excludedAreas : list < georectangle >

Areas that the route must not cross.

Excluded areas can be set as part of the RouteQuery type declaration or dynamically with the functions provided.

另请参阅 addExcludedArea , removeExcludedArea ,和 clearExcludedAreas .


featureTypes : QList < FeatureType >

List of features that will be considered when planning the route. Features with a weight of NeutralFeatureWeight will not be returned.

  • RouteQuery .NoFeature - No features will be taken into account when planning the route
  • RouteQuery .TollFeature - Consider tollways when planning the route
  • RouteQuery .HighwayFeature - Consider highways when planning the route
  • RouteQuery .PublicTransitFeature - Consider public transit when planning the route
  • RouteQuery .FerryFeature - Consider ferries when planning the route
  • RouteQuery .TunnelFeature - Consider tunnels when planning the route
  • RouteQuery .DirtRoadFeature - Consider dirt roads when planning the route
  • RouteQuery .ParksFeature - Consider parks when planning the route
  • RouteQuery .MotorPoolLaneFeature - Consider motor pool lanes when planning the route

另请参阅 setFeatureWeight and featureWeight .


maneuverDetail : enumeration

The level of detail which will be used in the representation of routing maneuvers.

  • RouteQuery .NoManeuvers - No maneuvers should be included with the route
  • RouteQuery .BasicManeuvers - Basic maneuvers will be included with the route

默认值为 RouteQuery .BasicManeuvers


numberAlternativeRoutes : int

The number of alternative routes requested when requesting routes. The default value is 0.


routeOptimizations : enumeration

The route optimizations which should be considered during the planning of the route. Values can be combined with OR ('|') -operator.

  • RouteQuery .ShortestRoute - Minimize the length of the journey
  • RouteQuery .FastestRoute - Minimize the traveling time for the journey
  • RouteQuery .MostEconomicRoute - Minimize the cost of the journey
  • RouteQuery .MostScenicRoute - Maximize the scenic potential of the journey

默认值为 RouteQuery .FastestRoute


segmentDetail : enumeration

The level of detail which will be used in the representation of routing segments.

  • RouteQuery .NoSegmentData - No segment data should be included with the route
  • RouteQuery .BasicSegmentData - Basic segment data will be included with the route

默认值为 RouteQuery .BasicSegmentData


travelModes : enumeration

The travel modes which should be considered during the planning of the route. Values can be combined with OR ('|') -operator.

  • RouteQuery .CarTravel - The route will be optimized for someone who is driving a car
  • RouteQuery .PedestrianTravel - The route will be optimized for someone who is walking
  • RouteQuery .BicycleTravel - The route will be optimized for someone who is riding a bicycle
  • RouteQuery .PublicTransitTravel - The route will be optimized for someone who is making use of public transit
  • RouteQuery .TruckTravel - The route will be optimized for someone who is driving a truck

默认值为 RouteQuery .CarTravel


waypoints : list < coordinate >

The waypoint coordinates of the desired route. The waypoints should be given in order from origin to destination. Two or more coordinates are needed.

Waypoints can be set as part of the RouteQuery type declaration or dynamically with the functions provided.

另请参阅 addWaypoint , removeWaypoint ,和 clearWaypoints .


方法文档编制

void addExcludedArea ( georectangle )

Adds the given area to excluded areas (areas that the route must not cross). Same area can only be added once.

另请参阅 removeExcludedArea and clearExcludedAreas .


void addWaypoint ( coordinate )

Appends a coordinate to the list of waypoints. Same coordinate can be set multiple times.

另请参阅 removeWaypoint and clearWaypoints .


void clearExcludedAreas ()

Clears all excluded areas (areas that the route must not cross).

另请参阅 addExcludedArea and removeExcludedArea .


void clearWaypoints ()

Clears all waypoints.

另请参阅 removeWaypoint and addWaypoint .


FeatureWeight featureWeight ( FeatureType featureType )

Gets the weight for the featureType .

另请参阅 featureTypes , setFeatureWeight ,和 resetFeatureWeights .


void removeExcludedArea ( georectangle )

Removes the given area to excluded areas (areas that the route must not cross).

另请参阅 addExcludedArea and clearExcludedAreas .


void removeWaypoint ( coordinate )

Removes the given from the list of waypoints. In case same coordinate appears multiple times, the most recently added coordinate instance is removed.

另请参阅 addWaypoint and clearWaypoints .


void resetFeatureWeights ()

Resets all feature weights to their default state (NeutralFeatureWeight).

另请参阅 featureTypes , setFeatureWeight ,和 featureWeight .


void setFeatureWeight ( FeatureType , FeatureWeight )

Defines the weight to associate with a feature during the planning of a route.

Following lists the possible feature weights:

  • RouteQuery .NeutralFeatureWeight - The presence or absence of the feature will not affect the planning of the route
  • RouteQuery .PreferFeatureWeight - Routes which contain the feature will be preferred over those that do not
  • RouteQuery .RequireFeatureWeight - Only routes which contain the feature will be considered, otherwise no route will be returned
  • RouteQuery .AvoidFeatureWeight - Routes which do not contain the feature will be preferred over those that do
  • RouteQuery .DisallowFeatureWeight - Only routes which do not contain the feature will be considered, otherwise no route will be returned

另请参阅 featureTypes , resetFeatureWeights ,和 featureWeight .