// Copyright (C) 2014 Canonical Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QGEOTILEDMAPPINGMANAGERENGINEMAPBOX_H #define QGEOTILEDMAPPINGMANAGERENGINEMAPBOX_H #include #include QT_BEGIN_NAMESPACE class QGeoTiledMappingManagerEngineMapbox : public QGeoTiledMappingManagerEngine { Q_OBJECT public: QGeoTiledMappingManagerEngineMapbox(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString); ~QGeoTiledMappingManagerEngineMapbox(); QGeoMap *createMap() override; private: QString m_cacheDirectory; }; QT_END_NAMESPACE #endif // QGEOTILEDMAPPINGMANAGERENGINEMAPBOX_H