qtlocation: revert Mapbox API calls to 256x256 tiles 48/24248/2
authorMatt Ranostay <matt.ranostay@konsulko.com>
Wed, 11 Mar 2020 23:30:19 +0000 (01:30 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Wed, 18 Mar 2020 22:13:04 +0000 (22:13 +0000)
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

meta-agl-profile-graphical-qt5/recipes-qt/qt5/qtlocation/0001-mapbox-update-API-url-to-match-new-schema.patch

index 350daae..ba8a991 100644 (file)
@@ -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()) +