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;}
|
2020-12-13 19:40:09 +01:00
|
|
|
RectC llBounds() {return _dataBounds;}
|
2019-05-10 18:56:19 +02:00
|
|
|
|
2020-11-15 22:37:49 +01: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
|
|
|
|
2020-11-15 22:37:49 +01: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);
|
|
|
|
|
2020-12-24 16:33:17 +01:00
|
|
|
void setOutputProjection(const Projection &projection);
|
2022-05-10 01:05:30 +02:00
|
|
|
void setDevicePixelRatio(qreal deviceRatio, qreal mapRatio);
|
2019-05-14 23:01:24 +02:00
|
|
|
|
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;}
|
|
|
|
|
2022-04-29 23:16:10 +02:00
|
|
|
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;
|
2020-04-19 11:36:17 +02:00
|
|
|
RectC _dataBounds;
|
2022-05-10 01:05:30 +02:00
|
|
|
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
|