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
6
8
9QGeoCodingManagerEngine *QGeoServiceProviderFactoryItemsOverlay::createGeocodingManagerEngine(
10 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
11{
12 Q_UNUSED(parameters);
13 Q_UNUSED(error);
14 Q_UNUSED(errorString);
15
16 return nullptr;
17}
18
19QGeoMappingManagerEngine *QGeoServiceProviderFactoryItemsOverlay::createMappingManagerEngine(
20 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
21{
22 return new QGeoMappingManagerEngineItemsOverlay(parameters, error, errorString);
23}
24
25QGeoRoutingManagerEngine *QGeoServiceProviderFactoryItemsOverlay::createRoutingManagerEngine(
26 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
27{
28 Q_UNUSED(parameters);
29 Q_UNUSED(error);
30 Q_UNUSED(errorString);
31
32 return nullptr;
33}
34
35QPlaceManagerEngine *QGeoServiceProviderFactoryItemsOverlay::createPlaceManagerEngine(
36 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
37{
38 Q_UNUSED(parameters);
39 Q_UNUSED(error);
40 Q_UNUSED(errorString);
41
42 return nullptr;
43}
44
45QT_END_NAMESPACE