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  · 

MapRoute

The MapRoute element displays a Route on a Map. More...

Inherits Item

This type was introduced in Qt Location 5.0.

Properties

Detailed Description

The MapRoute element displays a Route obtained through a RouteModel or other means, on the Map as a Polyline following the path of the Route.

MapRoute is really a MapPolyline, but with the path specified using the route property instead of directly in Coordinates.

By default, the route is displayed as a 1-pixel thick black line. This can be changed using the line.width and line.color properties.

Performance

For notes about the performance on MapRoute, refer to the documentation for MapPolyline.

Example Usage

Here is how to draw a route on a map:

 import QtQuick 2.0
 import QtLocation 5.0

 Map {
     RouteModel {
         id: routeModel
     }

     MapItemView {
         model: routeModel
         delegate: routeDelegate
     }

     Component {
         id: routeDelegate

         MapRoute {
             route: routeData
             line.color: "blue"
             line.width: 5
             smooth: true
             opacity: 0.8
         }
     }
 }

Property Documentation

line.width : int

line.color : color

These properties hold the width and color used to draw the line.

The width is in pixels and is independent of the zoom level of the map. The default values correspond to a black border with a width of 1 pixel.

For no line, use a width of 0 or a transparent color.


route : Route

Holds the route to be drawn which can be used to represents one geographical route.


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