QtLocation.location-places-qml

Overview

The Places API allows users to discover places of interest and view details about them, such as address and contact information. Some places may have additional content associated with them, such as images and reviews. The Places API also facilitates management of places and categories, allowing users to save and remove them.

Introductory Concepts

Plugin

A Plugin, see the Plugin References.

Plugin {
id: myPlugin
name: "nokia"
//specify plugin parameters as necessary
//PluginParameter {...}
//PluginParameter {...}
//...
}

Note: The Nokia plugin must be supplied with some mandatory parameters as outlined in the Nokia Plugin documentation.

Models, Views and Delegates

The QML Places API is built around the notion of models, views and delegates.

ModelA model holds data items and maintains their structure. The model is also responsible for retrieving the items from a data source.
ViewA view is a visual container that displays the data and manages how visual items are shown such as in a list or a grid. The view may also be responsible for navigating the data, for example, scrolling through the visual items during a flicking motion.
DelegateA delegate defines how individual data elements should appear as visual items in the view. The models expose a set of data roles and the delegate uses them to construct a visual item. The delegate may also define behaviour such as an operation to invoke when a visual item is clicked.

The Common Use Cases section below demonstrates concrete examples of how these concepts fit together.

Common Use Cases

Searching for Places

Searching is accomplished via the PlaceSearchModel. The plugin property specifies which backend to perform search operations against. Search parameters may be provided through properties such as the searchTerm and searchArea. A search operation can then be started by invoking the update() method. For simplicity, the snippet below invokes update() once construction of the model as been completed, typically update() would be invoked in response to a user action such as a button click. While the search operation is underway the PlaceSearchModel::status property transitions into the Loading state and when successfully completed moves into the Ready state.

PlaceSearchModel {
id: searchModel
plugin: myPlugin
searchTerm: "pizza"
searchArea: QtPositioning.circle(startCoordinate);
Component.onCompleted: update()
}

Display Search Results using a ListView

A ListView can be used to show the search results found by the model. It defines the visual region for where the results are shown, and in the case below fills the entirety of its parent. The ListView has built in behavior that enables the region to respond to flicking events and to scroll appropriately.

In the snippet below, the search model has been assigned to the ListView's model property. When the model is updated with new results, the ListView is automatically updated to reflect the model's new data items.

A simple delegate has been bound to the ListView's delegate property. The PlaceSearchModel exposes a set of roles of which the title and place roles have been used below, these are of type string and Place respectively. Essentially for each data item that should be visible in the view, the view invokes the delegate to create a visual representation of the item.

ListView {
anchors.fill: parent
model: searchModel
delegate: Component {
Column {
Text { text: title }
Text { text: place.location.address.text }
}
}
spacing: 10
}
src="https://assets.ubuntu.com/v1/b7976ed5-places-list.png" alt="" />

Note: For simplicty's sake we have assumed that every search result is of type PlaceSearchResult and so always have access to the place role, other search result types may not have a place role.

See the Places List example for full source code.

Display Search Results using a MapItemView

Instead of a ListView, the PlaceSearchModel can be used in conjunction with a MapItemView to display markers on a map. Firstly a Map is used to define the visual region occupied by the map, in this case it fills the entirety of its parent. Other properties are specified such as the plugin providing the maps, and the map's center and zoomLevel.

Inside the Map, a MapItemView is declared, where the model property has been set to the search model and a delegate consisting of a MapQuickItem is used to display a marker image. A marker is shown for every place that was found by the search model. The delegate uses the place role to position the marker.

Map {
id: map
anchors.fill: parent
plugin: myPlugin;
center {
latitude: -27.47
longitude: 153.025
}
zoomLevel: 13
MapItemView {
model: searchModel
delegate: MapQuickItem {
coordinate: place.location.coordinate
anchorPoint.x: image.width * 0.5
anchorPoint.y: image.height
sourceItem: Image {
id: image
source: "marker.png"
}
}
}
}
src="https://assets.ubuntu.com/v1/7bc4a86d-places-map.jpg" alt="" />

Note: For simplicty's sake we have assumed that every search result is of type PlaceSearchResult and so always have access to the place role, other search result types may not have a place role.

See the Places Map example for full source code.

Fetching Place Details

In order to save bandwidth, sometimes a backend will only return places which are partially populated with details. This can be checked with the Place::detailsFetched property which indicates whether all availalable details have been fetched or not. If not, the Place::getDetails() method can be invoked to fetch the remaining details.

if (!place.detailsFetched)
place.getDetails();

Saving and Removing Places

Some backends may support saving and removing places. This can be done by calling the Plugin must be assigned to specify which backend we are saving to. The status property will transition into the Saving state while the save operation is happening and on successful completion will move to the Ready state. The following snippet shows how to save and remove a place using javascript.

//creating and saving a place
var place = Qt.createQmlObject('import QtLocation 5.3; Place { }', parent);
place.plugin = myPlugin;
place.name = "New York";
place.location.coordinate.latitude = 40.7
place.location.coordinate.longitude = -74.0
place.save();
//removing a place
place.remove();

Learn More

The above snippets only exhibit a small subset of Places functionality. Refer to the Places Types shown below for richer content such as images, reviews etc, as well as more indepth descriptions and explanations.

See also the Places (QML) example for a more comprehensive demonstration on how to use the API.

Places Types

Data Types

Category

Type represents a category that a Place can be associated with

ContactDetail

Type holds a contact detail such as a phone number or a website address

ContactDetails

Type holds contact details for a Place

ExtendedAttributes

Type holds additional data about a Place

Icon

Type represents an icon image source which can have multiple sizes

Place

Type represents a location that is a position of interest

PlaceAttribute

Type holds generic place attribute information

Ratings

Type holds place rating information

Supplier

Holds data regarding the supplier of a place, a place's image, review, or editorial

User

Type identifies a user who contributed a particular Place content item

Models

CategoryModel

Type provides a model of the categories supported by a Plugin

EditorialModel

Type provides a model of place editorials

ImageModel

Type provides a model of place images

PlaceSearchModel

Provides access to place search results

PlaceSearchSuggestionModel

Provides access to search term suggestions

ReviewModel

Provides access to reviews of a Place