summaryrefslogtreecommitdiff
path: root/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp
diff options
context:
space:
mode:
authorRobert Ancell <robert.ancell@canonical.com>2014-10-21 14:18:13 -0400
committerAlex Blasche <alexander.blasche@theqtcompany.com>2015-01-09 09:00:35 +0100
commit3a48d5bf848ccd2b59eb4abbb3ee240bd688321c (patch)
tree78aa021e415daadd8247cfd6820639ddb0cc8a21 /src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp
parent9735cab006350ef9cb9a3f9b32b4829350bd1c6e (diff)
downloadqtlocation-3a48d5bf848ccd2b59eb4abbb3ee240bd688321c.tar.gz
Add Mapbox plugin.
Allow Mapbox (https://www.mapbox.com) maps to be used. This requires the user to set the mapbox.map_id and mapbox.access_token parameters for the Map object. Change-Id: I3095df260dd0c9d49d84d45385c5a530fcffee0b Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp')
-rw-r--r--src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp100
1 files changed, 100 insertions, 0 deletions
diff --git a/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp b/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp
new file mode 100644
index 00000000..7f080724
--- /dev/null
+++ b/src/plugins/geoservices/mapbox/qgeomapreplymapbox.cpp
@@ -0,0 +1,100 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Canonical Ltd.
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the QtLocation module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL21$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 or version 3 as published by the Free
+** Software Foundation and appearing in the file LICENSE.LGPLv21 and
+** LICENSE.LGPLv3 included in the packaging of this file. Please review the
+** following information to ensure the GNU Lesser General Public License
+** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "qgeomapreplymapbox.h"
+
+#include <QtLocation/private/qgeotilespec_p.h>
+
+QGeoMapReplyMapbox::QGeoMapReplyMapbox(QNetworkReply *reply, const QGeoTileSpec &spec, const QString &format, QObject *parent)
+: QGeoTiledMapReply(spec, parent), m_reply(reply), m_format (format)
+{
+ connect(m_reply, SIGNAL(finished()), this, SLOT(networkReplyFinished()));
+ connect(m_reply, SIGNAL(error(QNetworkReply::NetworkError)),
+ this, SLOT(networkReplyError(QNetworkReply::NetworkError)));
+ connect(m_reply, SIGNAL(destroyed()), this, SLOT(replyDestroyed()));
+}
+
+QGeoMapReplyMapbox::~QGeoMapReplyMapbox()
+{
+ if (m_reply) {
+ m_reply->deleteLater();
+ m_reply = 0;
+ }
+}
+
+void QGeoMapReplyMapbox::abort()
+{
+ if (!m_reply)
+ return;
+
+ m_reply->abort();
+}
+
+QNetworkReply *QGeoMapReplyMapbox::networkReply() const
+{
+ return m_reply;
+}
+
+void QGeoMapReplyMapbox::replyDestroyed()
+{
+ m_reply = 0;
+}
+
+void QGeoMapReplyMapbox::networkReplyFinished()
+{
+ if (!m_reply)
+ return;
+
+ if (m_reply->error() != QNetworkReply::NoError)
+ return;
+
+ setMapImageData(m_reply->readAll());
+ setMapImageFormat(m_format);
+ setFinished(true);
+
+ m_reply->deleteLater();
+ m_reply = 0;
+}
+
+void QGeoMapReplyMapbox::networkReplyError(QNetworkReply::NetworkError error)
+{
+ if (!m_reply)
+ return;
+
+ if (error != QNetworkReply::OperationCanceledError)
+ setError(QGeoTiledMapReply::CommunicationError, m_reply->errorString());
+
+ setFinished(true);
+ m_reply->deleteLater();
+ m_reply = 0;
+}