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
qgeomapreplymapbox.h
Go to the documentation of this file.
1// Copyright (C) 2014 Canonical Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QGEOMAPREPLYMAPBOX_H
5#define QGEOMAPREPLYMAPBOX_H
6
7#include <QtNetwork/QNetworkReply>
8#include <QtLocation/private/qgeotiledmapreply_p.h>
9#include <QtCore/QPointer>
10
11QT_BEGIN_NAMESPACE
12
13class QGeoMapReplyMapbox : public QGeoTiledMapReply
14{
15 Q_OBJECT
16
17public:
18 explicit QGeoMapReplyMapbox(QNetworkReply *reply, const QGeoTileSpec &spec, const QString &format, QObject *parent = nullptr);
19 ~QGeoMapReplyMapbox();
20
21private Q_SLOTS:
22 void networkReplyFinished();
23 void networkReplyError(QNetworkReply::NetworkError error);
24
25private:
26 QString m_format;
27};
28
29QT_END_NAMESPACE
30
31#endif // QGEOMAPREPLYMAPBOX_H