mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
46 lines
916 B
C++
46 lines
916 B
C++
#ifndef GEOTIFFMAP_H
|
|
#define GEOTIFFMAP_H
|
|
|
|
#include "transform.h"
|
|
#include "projection.h"
|
|
#include "map.h"
|
|
|
|
class Image;
|
|
|
|
class GeoTIFFMap : public Map
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GeoTIFFMap(const QString &fileName, QObject *parent = 0);
|
|
~GeoTIFFMap();
|
|
|
|
QRectF bounds();
|
|
QPointF ll2xy(const Coordinates &c);
|
|
Coordinates xy2ll(const QPointF &p);
|
|
|
|
void draw(QPainter *painter, const QRectF &rect, Flags flags);
|
|
|
|
void load(const Projection &in, const Projection &out, qreal deviceRatio,
|
|
bool hidpi);
|
|
void unload();
|
|
void setDevicePixelRatio(qreal deviceRatio, qreal mapRatio);
|
|
|
|
bool isValid() const {return _valid;}
|
|
QString errorString() const {return _errorString;}
|
|
|
|
static Map *create(const QString &path, const Projection &proj, bool *isDir);
|
|
|
|
private:
|
|
Projection _projection;
|
|
Transform _transform;
|
|
Image *_img;
|
|
QSize _size;
|
|
qreal _ratio;
|
|
|
|
bool _valid;
|
|
QString _errorString;
|
|
};
|
|
|
|
#endif // GEOTIFFMAP_H
|