summaryrefslogtreecommitdiffstats
path: root/src/plugins/geoservices/esri/georoutejsonparser_esri.h
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/georoutejsonparser_esri.h
parentee4bbb765e9a3ccfc9f5943d253290e3fc24484c (diff)
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/georoutejsonparser_esri.h')
-rw-r--r--src/plugins/geoservices/esri/georoutejsonparser_esri.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/src/plugins/geoservices/esri/georoutejsonparser_esri.h b/src/plugins/geoservices/esri/georoutejsonparser_esri.h
new file mode 100644
index 00000000..0511cf4d
--- /dev/null
+++ b/src/plugins/geoservices/esri/georoutejsonparser_esri.h
@@ -0,0 +1,72 @@
+/****************************************************************************
+**
+** 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$
+**
+****************************************************************************/
+
+#ifndef GEOROUTEJSONPARSERESRI_H
+#define GEOROUTEJSONPARSERESRI_H
+
+#include <QJsonDocument>
+#include <QJsonObject>
+#include <QGeoRoute>
+#include <QMap>
+
+QT_BEGIN_NAMESPACE
+
+class GeoRouteJsonParserEsri
+{
+public:
+ GeoRouteJsonParserEsri(const QJsonDocument &document);
+
+ QList<QGeoRoute> routes() const;
+ bool isValid() const;
+ QString errorString() const;
+
+private:
+ void parseDirections();
+ void parseDirection(const QJsonObject &direction);
+ void parseRoutes();
+ void parseRoute(const QJsonObject &route);
+
+ QString m_error;
+ QMap<int, QGeoRoute> m_routes;
+ QJsonObject m_json;
+};
+
+QT_END_NAMESPACE
+
+#endif // GEOROUTEJSONPARSERESRI_H