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

Qt Location

Provides QML and C++ interfaces to create location-aware applications.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

Qt Location

The Qt Location API helps you create viable mapping solutions using the data available from some of the popular location services.

Overview

The Qt Location API enables you to:

  • access and present map data,

  • support touch gesture on a specific area of the map,

  • query for a specific geographical location and route,

  • add additional layers on top, such as polylines and circles,

  • and search for places and related images.

Getting Started

To load the Qt Location module, add the following statement to your .qml files

 
Sélectionnez
import QtPositioning 5.12
import QtLocation 5.12

The QtLocation QML module depends on the QtPositioning QML module. Therefore every QML application that imports the QtLocation QML module must always import the QtPositioning module as well.

For C++ projects include the header appropriate for the current use case, for example applications using routes may use

 
Sélectionnez
#include <QGeoRoute>

The .pro file should have the location keyword added

 
Sélectionnez
QT += location

Submodules

The API is split into sub-modules, which provide QML and C++ interfaces for specific purposes. They focus mainly on Map and Place information. The required position data can be retrieved using the QtPositioning module.

Places

The Places submodule is the natural complement to Positioning, providing a source of geographical data about Places of Interest (POI). Besides the source information, the API provides information about the location, size, and other related information about a POI. The Places API can also retrieve images, reviews, and other content related to a place.

Places introduction:

for QML

for C++

Maps and Navigation

The module provides the QML and C++ alternatives for maps and navigation. The C++ alternative provides utility classes to get geocoding (finding a geographic coordinate from a street address) and navigation (including driving and walking directions) information, whereas its QML counterpart provides UI components to render the information.

Maps and Navigation introduction:

for QML

for C++

API References and Examples

The following are lists of the classes and UI components provided by the module, with example applications to demonstrate their usage:

QML API Reference

Full list of QML components in the Qt Location API

C++ API Reference by domain

Full list of C++ classes and methods of the Qt Location APIs sorted by domain

C++ API Reference

Full list of C++ classes and methods of the Qt Location APIs

Example Apps

Examples demonstrating use of the Qt Location APIs

Maps and Navigation Tutorial

Tutorial introducing the QML Maps Types

Plugin References and Parameters

Information about plugins, important notes on their usage, parameters that can be provided to influence their behavior.

Implementing New Back-Ends and Porting

For systems integrators and distributors, information related to making Qt Location available for a new platform.

GeoServices

Information about the Qt Location GeoServices plugins

Places

Information for places backend implementors

API changes

Information about QML API changes since 5.4

Licenses and Attributions

Qt Location is available under commercial licenses from The Qt Company. In addition, it is available under the GNU Lesser General Public License, version 3, or the GNU General Public License, version 2. See Qt Licensing for further details.

Furthermore Qt Location potentially contains third party modules under following permissive licenses:

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