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  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QML LandmarkModel Element

The LandmarkModel element provides access to landmarks. More...

Inherits LandmarkAbstractModel

  • List of all members, including inherited members
  • Properties

    Methods

    Detailed Description

    This element is part of the QtMobility.location 1.1 module.

    LandmarkModel provides a model of landmarks from the landmarks store. The contents of the model can be specified with a filter, and sorted with the LandmarkAbstractModel::sortBy and LandmarkAbstractModel::sortOrder properties. Whether the model is automatically updated when the store or filter changes, can be controlled with LandmarkAbstractModel::autoUpdate property.

    There are two ways of accessing the landmark data: through model by using views and delegates, or alternatively via landmarks list property. Of the two, the model access is preferred. Direct list access (i.e. non-model) is not guaranteed to be in order set by sortBy and sortOrder.

    At the moment only data role provided by the model is landmark (Landmark). Through that one can access any data provided by the Landmark element.

    The following example illustrates fetching of all landmarks in ascending name order. Example illustrates both model access as well as direct list access.

         Rectangle {
             width: 350
             height: 350
    
             // The model
             LandmarkModel {
                 id: myLandmarkModel
                 sortBy: LandmarkModel.NameSort;
                 sortOrder: LandmarkModel.AscendingOrder
                 limit: 15
                 onLandmarksChanged: {
                     // Direct list access
                     for (var index = 0; index < landmarks.length; index++)  {
                         console.log("Index, name:" + index + " , " + landmarks[index].name);
                     }
                 }
             }
             // The view
             ListView {
                 id: myLandmarkListView
                 model: landmarkModel
                 delegate: myLandmarkListDelegate
                 width: parent.width; height: parent.height
                 highlightFollowsCurrentItem: false
                 focus: true
                 anchors.fill: parent
                 keyNavigationWraps: true
             }
             // The delegate
             Component {
                 id: myLandmarkListDelegate
                 Item {
                     width: 200; height: 20
                     Text {id: nameField; text: landmark.name }
                     Text { id: phoneField; text: "  tel:"  + landmark.phoneNumber; anchors.left: nameField.right;}
                 }
             }
         }

    See also LandmarkAbstractModel, LandmarkCategoryModel, and QLandmarkManager.

    Property Documentation

    filter : LandmarkFilterBase

    The filter for filtering landmarks.

         LandmarkNameFilter {
             id: coralFilter
             name: "Flinders Reef"
         }
    
         LandmarkModel {
             id: landmarkModel
             filter: coralFilter
             // Alternatively filter could be declared directly, e.g:
             /*
             filter: LandmarkIntersectionFilter {
                 LandmarkNameFilter {
                     ...
                 }
                 LandmarkUnionFilter {
                     LandmarkIntersectionFilter {
                         LandmarkNameFilter {
                             ...
                         }
                         LandmarkProximityFilter {
                             ...
                         }
                     }
                 }
             }
             */
             limit: 100
         }

    See also LandmarkUnionFilter, LandmarkIntersectionFilter, LandmarkNameFilter, LandmarkProximityFilter, LandmarkBoxFilter, and LandmarkCategoryFilter.


    importFile : string

    Landmarks and their related categories can be imported by setting the import file. If LandmarkAbstractModel::autoUpdate is true, the import will be done automatically and as a result model updates. Alternatively importLandmarks() can be invoked.

    For supported file formats, refer to QLandmarkManager and QLandmarkImportRequest.

         LandmarkModel {
             id: landmarkModelForImport
             importFile: "mylandmarkfile.gpx"
         }

    read-onlylandmarks : QDeclarativeListProperty

    This element holds the list of Landmark elements that the model currently has. Accessing landmarks by iterating over this list is not guaranteed to be in the order set by LandmarkAbstractModel::sortBy or LandmarkAbstractModel::sortOrder

         LandmarkModel {
             id: landmarkModelForIteration
             onLandmarksChanged: {
                 console.log("log: Landmark count is: "+ count);
                 for (var index = 0; index < landmarks.length; index++)  {
                     console.log("Index, name:" + index + " , " + landmarks[index].name);
                 }
             }
         }

    Method Documentation

    LandmarkModel::importLandmarks ()

    Imports landmarks (and categories) in importFile.


    X

    Thank you for giving your feedback.

    Make sure it is related to this specific page. For more general bugs and requests, please use the Qt Bug Tracker.

    [0]; s.parentNode.insertBefore(ga, s); })();
    Publicité

    Best Of

    Actualités les plus lues

    Semaine
    Mois
    Année
    1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 94
    2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
    3. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 45
    4. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
    5. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 6
    6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
    7. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
    Page suivante

    Le Qt Developer Network au hasard

    Logo

    QML et les styles

    Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

    Communauté

    Ressources

    Liens utiles

    Contact

    • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

    Qt dans le magazine

    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 qtmobility-1.1
    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