From 83a52be2b0fb60fca4b470b613dabc248aa25765 Mon Sep 17 00:00:00 2001 From: Tadej Novak Date: Sat, 19 Oct 2019 10:02:50 +0200 Subject: [qt] Make image source url update possible --- platform/qt/src/qmapboxgl.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/platform/qt/src/qmapboxgl.cpp b/platform/qt/src/qmapboxgl.cpp index 094eaca5ac..b200d476f7 100644 --- a/platform/qt/src/qmapboxgl.cpp +++ b/platform/qt/src/qmapboxgl.cpp @@ -28,6 +28,7 @@ #include #include #include +#include #include #include #include @@ -1326,7 +1327,7 @@ bool QMapboxGL::sourceExists(const QString& sourceID) Updates the source \a id with new \a params. If the source does not exist, it will be added like in addSource(). Only - GeoJSON sources can be updated. + image and GeoJSON sources can be updated. */ void QMapboxGL::updateSource(const QString &id, const QVariantMap ¶ms) { @@ -1340,12 +1341,17 @@ void QMapboxGL::updateSource(const QString &id, const QVariantMap ¶ms) } auto sourceGeoJSON = source->as(); - if (!sourceGeoJSON) { - qWarning() << "Unable to update source: only GeoJSON sources are mutable."; + auto sourceImage = source->as(); + if (!sourceGeoJSON && !sourceImage) { + qWarning() << "Unable to update source: only GeoJSON and Image sources are mutable."; return; } - if (params.contains("data")) { + if (sourceImage) { + if (params.contains("url")) { + sourceImage->setURL(params["url"].toString().toStdString()); + } + } else if (sourceGeoJSON && params.contains("data")) { Error error; auto result = convert(params["data"], error); if (result) { -- cgit v1.2.1