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
qgeoserviceproviderpluginmapboxgl.cpp
Go to the documentation of this file.
1// Copyright (C) 2017 The Qt Company Ltd.
2// Copyright (C) 2017 Mapbox, Inc.
3// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
4
7
8#include <QtGui/QOpenGLContext>
9
11
12QGeoServiceProviderFactoryMapboxGL::QGeoServiceProviderFactoryMapboxGL()
13{
14}
15
16QGeoCodingManagerEngine *QGeoServiceProviderFactoryMapboxGL::createGeocodingManagerEngine(
17 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
18{
19 Q_UNUSED(parameters);
20 Q_UNUSED(error);
21 Q_UNUSED(errorString);
22
23 return nullptr;
24}
25
26QGeoMappingManagerEngine *QGeoServiceProviderFactoryMapboxGL::createMappingManagerEngine(
27 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
28{
29 return new QGeoMappingManagerEngineMapboxGL(parameters, error, errorString);
30}
31
32QGeoRoutingManagerEngine *QGeoServiceProviderFactoryMapboxGL::createRoutingManagerEngine(
33 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
34{
35 Q_UNUSED(parameters);
36 Q_UNUSED(error);
37 Q_UNUSED(errorString);
38
39 return nullptr;
40}
41
42QPlaceManagerEngine *QGeoServiceProviderFactoryMapboxGL::createPlaceManagerEngine(
43 const QVariantMap &parameters, QGeoServiceProvider::Error *error, QString *errorString) const
44{
45 Q_UNUSED(parameters);
46 Q_UNUSED(error);
47 Q_UNUSED(errorString);
48
49 return nullptr;
50}
51
52QT_END_NAMESPACE