QtLocation.location-maps-qml

Maps and Navigation provides QtQuick user interface types for displaying geographic information on a map, as well as allowing user interaction with map overlay objects and the display itself. It also contains utilities for geocoding (finding a geographic coordinate from a street address) and navigation (including driving and walking directions).

It builds upon the API concepts and types in the QML Positioning API. A more hands-on introduction of the Maps and Navigation types can be found in the Maps and Navigation tutorial.

Maps

Displaying Maps

Displaying a map is done using the Map QML types. The Map type supports user interaction through the MapGestureArea QML type. The Map object draws the map on-screen using OpenGL (ES), allowing for hardware-accelerated rendering where available.

Key Types

PluginA location-based services plugin provides data including map data which is then displayed in a Map object.
MapQtQuick item to display a map on-screen.
MapGestureAreaInteraction helper for panning, flicking and pinch-to-zoom gesture on a Map.

Note that the client must create a Plugin object prior to using a Map type in order to have access to map data to display.

Putting Objects on a Map (Map Overlay Objects)

Maps can also contain map overlay objects, which are used to display information on its surface. There is a set of basic pre-defined map overlay objects, as well as the ability to implement custom map overlay objects using the MapQuickItem type, which can contain any standard QtQuick item.

Key Types

MapCircleA geographic circle (all points at a set distance from a center), optionally with a border.
MapRectangleA rectangle whose top left and bottom right points are specified as coordinate types, optionally with a border.
MapPolygonA polygon made of an arbitrary list of coordinates.
MapPolylineA polyline made of an arbitrary list of coordinates.
MapQuickItemTurns any arbitrary QtQuick Item into a map overlay object. MapQuickItem is an enabler for specifying custom map overlay objects.

Model-View Design with Map Overlay Objects

To automatically generate map overlay objects based on the contents of a QtQuick model (for example a ListModel item), the MapItemView type is available. It accepts any map overlay object as its delegate, and can only be created within a Map.

Key Types

MapItemViewPopulates a Map with map overlay objects based on the data provided by a model.

Interaction with Map Overlay Objects

Properties of map overlay objects that influence their appearance on the display can be changed at any time, and many can also be used in animations. Animating coordinate-based map overlay objects, such as MapPolygon and MapPolyline, is not yet available.

Geocoding -- Address to Coordinate and Vice Versa

Geocoding is the translation of geographic coordinates into addresses, or vice versa. Such a translation usually involves sending the source data to a server which then performs the translation and returns the results, although some location-based service provider plugins may be able to provide some geocoding functionality without sending data to a remote server. The availability and accuracy of the translation usually depends on the location or address being translated, as different areas of the Earth are mapped to varying degrees of accuracy.

A geocoding query in QML is performed using the GeocodeModel type. For an address-to-coordinate query, its query property may be set to either an Address object or a string containing the textual form of the address to search for. To perform the reverse, the same property can be set to a coordinate instead. Results are made available in the contents of the model.

Key Types

PluginA location-based services plugin provides data including geocoding translation results which are exposed to clients via a GeocodeModel.
GeocodeModelQueries the Plugin for geocoding translations and provides access to results via indexes in the model.
AddressStructured address for use in queries and results of geocoding.

Note that the client must create a Plugin object prior to using a GeocodeModel object. This will enable access to geocoding translation services and thus data to display.

Routing and Navigation

Routing is the determination of a navigable path from one point to another on a map. Given a map that is aware of features that aid or hinder navigation, such as bridges, waterways and so on, a series of segments that make up the journey can be constructed. If these RouteSegments are simple then we can add navigation information at the connecting points, RouteManeuvers, between the segments.

Key Types

RouteThe entire path to be navigated.
RouteSegmentThe individual components of a route.
RouteManeuverThe navigation information that joins segments.
RouteModelThe means of making requests on the backend to supply route information.