1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/map/jnxmap.h

68 lines
1.2 KiB
C
Raw Normal View History

2018-05-22 22:40:15 +02:00
#ifndef JNXMAP_H
#define JNXMAP_H
#include <QFile>
#include <QVector>
#include "common/rtree.h"
#include "common/rectc.h"
#include "transform.h"
#include "map.h"
class JNXMap : public Map
{
public:
Q_OBJECT
public:
JNXMap(const QString &fileName, QObject *parent = 0);
const QString &name() const {return _name;}
QRectF bounds() const;
int zoom() const {return _zoom;}
void setZoom(int zoom) {_zoom = zoom;}
int zoomFit(const QSize &size, const RectC &rect);
int zoomIn();
int zoomOut();
QPointF ll2xy(const Coordinates &c);
Coordinates xy2ll(const QPointF &p);
2018-05-22 22:40:15 +02:00
void draw(QPainter *painter, const QRectF &rect, bool block);
bool isValid() const {return _valid;}
QString errorString() const {return _errorString;}
private:
struct Tile {
QPointF pos;
quint32 size;
quint32 offset;
};
struct Zoom {
Transform transform;
QVector<Tile> tiles;
RTree<Tile*, qreal, 2> tree;
};
template<class T> bool readValue(T &val);
bool readString(QByteArray &ba);
bool readTiles();
static bool cb(Tile *tile, void *context);
static QPixmap pixmap(const Tile *tile, QFile *file);
QString _name;
QFile _file;
QVector<Zoom> _zooms;
int _zoom;
RectC _bounds;
bool _valid;
QString _errorString;
};
#endif // JNXMAP_H