Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qgeoserviceproviderpluginosm.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 Aaron McCarthy <mccarthy.aaron@gmail.com>
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
10
12
13QGeoCodingManagerEngine *QGeoServiceProviderFactoryOsm::createGeocodingManagerEngine(
14 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
15{
16 return new QGeoCodingManagerEngineOsm(parameters, error, errorString);
17}
18
19QGeoMappingManagerEngine *QGeoServiceProviderFactoryOsm::createMappingManagerEngine(
20 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
21{
22 return new QGeoTiledMappingManagerEngineOsm(parameters, error, errorString);
23}
24
25QGeoRoutingManagerEngine *QGeoServiceProviderFactoryOsm::createRoutingManagerEngine(
26 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
27{
28 return new QGeoRoutingManagerEngineOsm(parameters, error, errorString);
29}
30
31QPlaceManagerEngine *QGeoServiceProviderFactoryOsm::createPlaceManagerEngine(
32 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
33{
34 return new QPlaceManagerEngineOsm(parameters, error, errorString);
35}
36
37QT_END_NAMESPACE
Combined button and popup list for selecting options.