1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-18 19:52:09 +01:00

Added support for online PBF maps

(https://maps.tilehosting.com)
This commit is contained in:
Martin Tůma 2018-11-10 00:19:51 +01:00
parent 09242841e3
commit 409ce889cd

View File

@ -6,7 +6,7 @@
static bool loadTileFile(Tile &tile, const QString &file)
{
if (!tile.pixmap().load(file)) {
if (!tile.pixmap().load(file, tile.zoom().toString().toLatin1())) {
qWarning("%s: error loading tile file", qPrintable(file));
return false;
}