mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-21 19:23:53 +08:00
* change codebase * compile * add mapboxprovider * works with map_renderer in c * remove maplibre temp * maplibre works * cleanup build.sh * x86 stuff * add lib * update release files * don't need that * tici build * tici build * add tici lib * update refs --------- Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
32 lines
745 B
C++
32 lines
745 B
C++
// Copyright (C) 2023 MapLibre contributors
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// Copyright (C) 2017 Mapbox, Inc.
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
#pragma once
|
|
|
|
#include "export_location.hpp"
|
|
|
|
#include <QMapLibre/Settings>
|
|
|
|
#include <QtLocation/private/qgeomappingmanagerengine_p.h>
|
|
#include <QtLocation/QGeoServiceProvider>
|
|
|
|
namespace QMapLibre {
|
|
|
|
class Q_MAPLIBRE_LOCATION_EXPORT QtMappingEngine : public QGeoMappingManagerEngine {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtMappingEngine(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString);
|
|
|
|
QGeoMap *createMap() override;
|
|
|
|
private:
|
|
Settings m_settings;
|
|
QString m_mapItemsBefore;
|
|
};
|
|
|
|
} // namespace QMapLibre
|