Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

Route

The Route element represents one geographical route. More...

Inherits QtObject

This type was introduced in Qt Location 5.0.

Properties

Detailed Description

A Route element contains high level information about a route, such as the length the route, the estimated travel time for the route, and enough information to render a basic image of the route on a map.

The QGeoRoute object also contains a list of RouteSegment elements which describe subsections of the route in greater detail.

The primary means of acquiring Route elements is RouteModel.

Example

This example shows how to display a route's maneuvers in a ListView:

 import QtQuick 2.0
 import QtLocation 5.0

 RouteModel {
     id: routeModel
     // model initialization
 }

 ListView {
     spacing: 10
     model: routeModel.status == RouteModel.Ready ? routeModel.get(0).segments : null
     visible: model ? true : false
     delegate: Row {
         width: parent.width
         spacing: 10
         property bool hasManeuver : modelData.maneuver && modelData.maneuver.valid
         visible: hasManeuver
         Text { text: (1 + index) + "." }
         Text {
             text: hasManeuver ? modelData.maneuver.instructionText : ""
         }
     }
 }

Property Documentation

read-onlybounds : BoundingBox

Read-only property which holds a bounding box which encompasses the entire route.


read-onlydistance : real

Read-only property which holds distance covered by this route, in meters.


read-onlypath : QQmlListProperty<Coordinate>

Read-only property which holds the geographical coordinates of this route. Coordinates are listed in the order in which they would be traversed by someone traveling along this segment of the route.

To access individual segments you can use standard list accessors: 'path.length' indicates the number of elements and 'path[index starting from zero]' gives the actual element.

See also Coordinate.


read-onlysegments : QQmlListProperty<RouteSegment>

Read-only property which holds the list of RouteSegment elements of this route.

To access individual segments you can use standard list accessors: 'segments.length' indicates the number of elements and 'segments[index starting from zero]' gives the actual element.

See also RouteSegment.


read-onlytravelTime : int

Read-only property which holds the estimated amount of time it will take to traverse this route, in seconds.


Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 5.0-snapshot
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web