IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

MapItemView QML Type

The MapItemView is used to populate Map from a model.

This type was introduced in QtLocation 5.5.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

MapItemView QML Type

  • Import Statement: import QtLocation 6.5

  • Since: QtLocation 5.5

  • Group: MapItemView is part of QML Maps Plugin

Detailed Description

The MapItemView is used to populate Map with MapItems from a model. The MapItemView type only makes sense when contained in a Map, meaning that it has no standalone presentation.

Example Usage

This example demonstrates how to use the MapViewItem object to display a route on a map:

 
Sélectionnez
import QtQuick
import QtPositioning
import QtLocation

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

 

[since QtLocation 5.12] add : Transition

This property holds the transition that is applied to the map items created by the view when they are instantiated and added to the map.

This property was introduced in QtLocation 5.12.

autoFitViewport : bool

This property controls whether to automatically pan and zoom the viewport to display all map items when items are added or removed.

Defaults to false.

delegate : Component

This property holds the delegate which defines how each item in the model should be displayed. The Component must contain exactly one MapItem -derived object as the root object.

model : model

This property holds the model that provides data used for creating the map items defined by the delegate. Only QAbstractItemModel based models are supported.

[since QtLocation 5.12] remove : Transition

This property holds the transition that is applied to the map items created by the view when they are removed.

This property was introduced in QtLocation 5.12.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+