1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/map/tile.h

33 lines
571 B
C
Raw Normal View History

#ifndef TILE_H
#define TILE_H
#include <QPixmap>
#include <QPoint>
2017-11-14 22:15:46 +01:00
#include <QDebug>
class Tile
{
public:
Tile(const QPoint &xy, const QVariant &zoom)
{_xy = xy; _zoom = zoom;}
QVariant zoom() const {return _zoom;}
const QPoint& xy() const {return _xy;}
QPixmap& pixmap() {return _pixmap;}
private:
QVariant _zoom;
QPoint _xy;
QPixmap _pixmap;
};
#ifndef QT_NO_DEBUG
2017-11-14 22:15:46 +01:00
inline QDebug operator<<(QDebug dbg, const Tile &tile)
{
dbg.nospace() << "Tile(" << tile.zoom() << ", " << tile.xy() << ")";
2018-01-21 11:19:46 +01:00
return dbg.space();
2017-11-14 22:15:46 +01:00
}
#endif // QT_NO_DEBUG
2017-11-14 22:15:46 +01:00
#endif // TILE_H