Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class QtBasemapPluginConan(ConanFile):
name = 'QtBasemapPlugin'
version = '2.1.0-1'
version = '2.1.0-2'
license = 'LGPL3'
url = 'http://code.qt.io/cgit/qt/qtlocation.git/tree/src/plugins/geoservices/mapbox?h=6.7.3'
description = 'Qt GeoServices plugin for basemaps including MapBox'
Expand Down
2 changes: 1 addition & 1 deletion src/qgeotilefetchermapbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ QGeoTiledMapReply *QGeoTileFetcherMapbox::getTileImage(const QGeoTileSpec &spec)
(!subdomains.isEmpty() ? " {s}=" + subdomains.join(", ") : "") +
(!bbox.isEmpty() ? " {bbox}=" + bbox : "") +
(!wmsVersion.isEmpty() ? " with version " + wmsVersion : "");
qInfo() << "Basemap tile requested" << urlDetails;
qInfo() << QDateTime::currentDateTime().toString("yyyy-MM-dd HH:mm:ss") << " basemap tile requested" << urlDetails;
}

tileUrl = QUrl(basemapUrl);
Expand Down