1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-28 03:59:15 +02:00

Do not affect the map object scaling when resizing the tiles

This commit is contained in:
2023-07-04 20:27:41 +02:00
parent 0d6b02f466
commit cd220216dd
2 changed files with 9 additions and 10 deletions

View File

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