Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
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);
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);
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);
47 Q_UNUSED(errorString);
48
49 return nullptr;
50}
51
Error
Describes an error related to the loading and setup of a service provider plugin.
\inmodule QtLocation
\macro QT_RESTRICTED_CAST_FROM_ASCII
Definition qstring.h:129
Combined button and popup list for selecting options.
DBusConnection const char DBusError * error
#define Q_UNUSED(x)