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
qgeoserviceproviderpluginitemsoverlay.cpp
Go to the documentation of this file.
1// Copyright (C) 2017 The Qt Company Ltd.
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
7
9
10QGeoCodingManagerEngine *QGeoServiceProviderFactoryItemsOverlay::createGeocodingManagerEngine(
11 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
12{
13 Q_UNUSED(parameters);
14 Q_UNUSED(error);
15 Q_UNUSED(errorString);
16
17 return nullptr;
18}
19
20QGeoMappingManagerEngine *QGeoServiceProviderFactoryItemsOverlay::createMappingManagerEngine(
21 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
22{
23 return new QGeoMappingManagerEngineItemsOverlay(parameters, error, errorString);
24}
25
26QGeoRoutingManagerEngine *QGeoServiceProviderFactoryItemsOverlay::createRoutingManagerEngine(
27 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
28{
29 Q_UNUSED(parameters);
30 Q_UNUSED(error);
31 Q_UNUSED(errorString);
32
33 return nullptr;
34}
35
36QPlaceManagerEngine *QGeoServiceProviderFactoryItemsOverlay::createPlaceManagerEngine(
37 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
38{
39 Q_UNUSED(parameters);
40 Q_UNUSED(error);
41 Q_UNUSED(errorString);
42
43 return nullptr;
44}
45
46QT_END_NAMESPACE
Combined button and popup list for selecting options.