summaryrefslogtreecommitdiff
path: root/src/plugins/geoservices/esri/geomapsource.cpp
diff options
context:
space:
mode:
authorGuillaume Belz <gbelz@esri.com>2016-08-17 23:49:22 +0100
committerPaolo Angelelli <paolo.angelelli@theqtcompany.com>2016-08-31 08:10:57 +0000
commitd999495a01cf6b6cb206a968944b889ab29e3450 (patch)
tree04c92d06b33d4a11e8fc52938ad46ab1f6542ce2 /src/plugins/geoservices/esri/geomapsource.cpp
parentee4bbb765e9a3ccfc9f5943d253290e3fc24484c (diff)
downloadqtlocation-d999495a01cf6b6cb206a968944b889ab29e3450.tar.gz
Add geoservices plugin to support ESRI mapping servicesv5.8.0-alpha1
[ChangeLog] Add geoservices plugin to support ESRI mapping services. Change-Id: I96fdfd9af77dc51166a9ded268bbcf0d66016fda Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'src/plugins/geoservices/esri/geomapsource.cpp')
-rw-r--r--src/plugins/geoservices/esri/geomapsource.cpp107
1 files changed, 107 insertions, 0 deletions
diff --git a/src/plugins/geoservices/esri/geomapsource.cpp b/src/plugins/geoservices/esri/geomapsource.cpp
new file mode 100644
index 00000000..32fe1899
--- /dev/null
+++ b/src/plugins/geoservices/esri/geomapsource.cpp
@@ -0,0 +1,107 @@
+/****************************************************************************
+**
+** Copyright (C) 2013-2016 Esri <contracts@esri.com>
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the QtLocation module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** 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 The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/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 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or (at your option) the GNU General
+** Public license version 3 or any later version approved by the KDE Free
+** Qt Foundation. The licenses are as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
+** https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "geomapsource.h"
+
+#include <QUrl>
+
+QT_BEGIN_NAMESPACE
+
+static const QString kArcGISTileScheme(QStringLiteral("/tile/${z}/${y}/${x}"));
+
+struct MapStyleData
+{
+ QString name;
+ QGeoMapType::MapStyle style;
+};
+
+static const MapStyleData mapStyles[] =
+{
+ { QStringLiteral("StreetMap"), QGeoMapType::StreetMap },
+ { QStringLiteral("SatelliteMapDay"), QGeoMapType::SatelliteMapDay },
+ { QStringLiteral("SatelliteMapNight"), QGeoMapType::SatelliteMapNight },
+ { QStringLiteral("TerrainMap"), QGeoMapType::TerrainMap },
+ { QStringLiteral("HybridMap"), QGeoMapType::HybridMap },
+ { QStringLiteral("TransitMap"), QGeoMapType::TransitMap },
+ { QStringLiteral("GrayStreetMap"), QGeoMapType::GrayStreetMap },
+ { QStringLiteral("PedestrianMap"), QGeoMapType::PedestrianMap },
+ { QStringLiteral("CarNavigationMap"), QGeoMapType::CarNavigationMap },
+ { QStringLiteral("CustomMap"), QGeoMapType::CustomMap }
+};
+
+GeoMapSource::GeoMapSource(QGeoMapType::MapStyle style, const QString &name,
+ const QString &description, bool mobile, bool night, int mapId,
+ const QString &url, const QString &copyright) :
+ QGeoMapType(style, name, description, mobile, night, mapId),
+ m_url(url), m_copyright(copyright)
+{
+}
+
+QString GeoMapSource::toFormat(const QString &url)
+{
+ QString format = url;
+
+ if (!format.contains(QLatin1String("${")))
+ format += kArcGISTileScheme;
+
+ format.replace(QLatin1String("${z}"), QLatin1String("%1"));
+ format.replace(QLatin1String("${x}"), QLatin1String("%2"));
+ format.replace(QLatin1String("${y}"), QLatin1String("%3"));
+ format.replace(QLatin1String("${token}"), QLatin1String("%4"));
+
+ return format;
+}
+
+QGeoMapType::MapStyle GeoMapSource::mapStyle(const QString &styleString)
+{
+ for (unsigned int i = 0; i < sizeof(mapStyles)/sizeof(MapStyle); i++) {
+ const MapStyleData &mapStyle = mapStyles[i];
+
+ if (styleString.compare(mapStyle.name, Qt::CaseInsensitive) == 0)
+ return mapStyle.style;
+ }
+
+ QGeoMapType::MapStyle style = static_cast<QGeoMapType::MapStyle>(styleString.toInt());
+ if (style <= QGeoMapType::NoMap)
+ style = QGeoMapType::CustomMap;
+
+ return style;
+}
+
+QT_END_NAMESPACE