summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2020-03-12 01:30:19 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-03-12 16:11:39 +0000
commitcb80cac9d42a0f5477d1833165ac4af334eb2e71 (patch)
tree1874d55059837406fbb280f95bf4e027dd8268dd
parent82ad779d4123882fb7da6b6175de76560c0f3d4f (diff)
qtlocation: revert Mapbox API calls to 256x256 tiles
Newer API uses 512x512 blocks by default, but we need to use 256x256 to avoid tiny font as QtLocation expected the latter sized tiles. Bug-AGL: SPEC-3264 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com> Change-Id: I12e926fea5c527f7be2f33beb68d67b68a3b7873
-rw-r--r--meta-agl-profile-graphical-qt5/recipes-qt/qt5/qtlocation/0001-mapbox-update-API-url-to-match-new-schema.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-agl-profile-graphical-qt5/recipes-qt/qt5/qtlocation/0001-mapbox-update-API-url-to-match-new-schema.patch b/meta-agl-profile-graphical-qt5/recipes-qt/qt5/qtlocation/0001-mapbox-update-API-url-to-match-new-schema.patch
index 350daaee6..ba8a991ed 100644
--- a/meta-agl-profile-graphical-qt5/recipes-qt/qt5/qtlocation/0001-mapbox-update-API-url-to-match-new-schema.patch
+++ b/meta-agl-profile-graphical-qt5/recipes-qt/qt5/qtlocation/0001-mapbox-update-API-url-to-match-new-schema.patch
@@ -18,7 +18,7 @@ index 0b128556..bd2be6b6 100644
request.setUrl(QUrl(mapboxTilesApiPath +
- ((spec.mapId() >= m_mapIds.size()) ? QStringLiteral("mapbox.streets") : m_mapIds[spec.mapId() - 1]) + QLatin1Char('/') +
+ m_mapIds[m_mapIds.size() - 1] +
-+ QStringLiteral("/tiles/") +
++ QStringLiteral("/tiles/256/") +
QString::number(spec.zoom()) + QLatin1Char('/') +
QString::number(spec.x()) + QLatin1Char('/') +
QString::number(spec.y()) +