1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-25 04:05:53 +01:00
GPXSee/src/map/imgmap.h

64 lines
1.3 KiB
C
Raw Normal View History

2019-05-10 18:56:19 +02:00
#ifndef IMGMAP_H
#define IMGMAP_H
#include "map.h"
#include "projection.h"
#include "transform.h"
2020-02-09 23:24:48 +01:00
#include "IMG/mapdata.h"
2019-05-10 18:56:19 +02:00
class IMGMap : public Map
{
Q_OBJECT
public:
IMGMap(const QString &fileName, QObject *parent = 0);
2020-04-26 15:46:42 +02:00
~IMGMap() {qDeleteAll(_data);}
2019-05-10 18:56:19 +02:00
2020-04-26 15:46:42 +02:00
QString name() const {return _data.first()->name();}
2019-05-10 18:56:19 +02:00
2020-03-07 19:24:39 +01:00
QRectF bounds() {return _bounds;}
RectC llBounds() {return _dataBounds;}
2019-05-10 18:56:19 +02:00
int zoom() const {return _zoom;}
void setZoom(int zoom);
int zoomFit(const QSize &, const RectC &);
int zoomIn();
int zoomOut();
2019-05-10 18:56:19 +02:00
QPointF ll2xy(const Coordinates &c)
{return _transform.proj2img(_projection.ll2xy(c));}
Coordinates xy2ll(const QPointF &p)
{return _projection.xy2ll(_transform.img2proj(p));}
2019-05-10 18:56:19 +02:00
void draw(QPainter *painter, const QRectF &rect, Flags flags);
void setOutputProjection(const Projection &projection);
void setDevicePixelRatio(qreal deviceRatio, qreal mapRatio);
2019-07-04 18:18:03 +02:00
void load();
void unload();
2019-05-10 18:56:19 +02:00
bool isValid() const {return _valid;}
QString errorString() const {return _errorString;}
static Map* create(const QString &path, const Projection &, bool *isDir);
2019-05-10 18:56:19 +02:00
private:
2019-05-29 18:27:11 +02:00
Transform transform(int zoom) const;
2019-05-10 18:56:19 +02:00
void updateTransform();
2021-04-10 15:27:40 +02:00
QList<IMG::MapData *> _data;
2019-05-10 18:56:19 +02:00
int _zoom;
Projection _projection;
Transform _transform;
2020-03-07 19:24:39 +01:00
QRectF _bounds;
RectC _dataBounds;
qreal _tileRatio;
2019-07-04 18:18:03 +02:00
2019-05-10 18:56:19 +02:00
bool _valid;
QString _errorString;
};
#endif // IMGMAP_H