Qt Positioning GeoClue v2 plugin

Overview

This plugin is an interface to the GeoClue v2 library. It requires this library to be installed on the system to function.

The plugin uses D-Bus to establish communication with the GeoClue v2 D-Bus service and to provide positioning information.

The plugin can be used to receive only the positioning information. It does not provide satellite information.

The plugin can be loaded by using the provider name geoclue2.

Parameters

The following table lists parameters that can be passed to the geoclue2 plugin.

ParameterDescription
desktopIdThe Desktop Id property used by the D-Bus service. If the parameter is not specified, the application name provided by QCoreApplication::applicationName() is used.

Examples

The following examples show how to create a geoclue2 PositionSource from C++ and QML.

QML

PositionSource {
    name: "geoclue2"
    PluginParameter { name: "desktopId"; value: "SomeIdentifierString" }
}

C++

QVariantMap params;
params["desktopId"] = "SomeIdentifierString";
QGeoPositionInfoSource *positionSource = QGeoPositionInfoSource::createSource("geoclue2", params, this);

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.