1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 11:45:53 +01:00

Make the Mapsforge tiles sufficient large for the layout

This commit is contained in:
Martin Tůma 2023-06-14 00:40:00 +02:00
parent 1086a74f99
commit 41188360bf

View File

@ -59,7 +59,8 @@ public:
RectC bounds() const; RectC bounds() const;
Range zooms() const Range zooms() const
{return Range(_subFiles.first().min, _subFiles.last().max);} {return Range(_subFiles.first().min, _subFiles.last().max);}
int tileSize() const {return _tileSize;} int tileSize() const
{return _tileSize < 384 ? _tileSize << 1 : _tileSize;}
void points(const RectC &rect, int zoom, QList<Point> *list); void points(const RectC &rect, int zoom, QList<Point> *list);
void paths(const RectC &searchRect, const RectC &boundsRect, int zoom, void paths(const RectC &searchRect, const RectC &boundsRect, int zoom,