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

55 lines
1.2 KiB
C
Raw Normal View History

#ifndef ONLINEMAP_H
#define ONLINEMAP_H
2017-11-26 18:54:03 +01:00
#include "common/range.h"
#include "common/rectc.h"
#include "map.h"
2018-02-20 23:37:19 +01:00
#include "tileloader.h"
class OnlineMap : public Map
{
Q_OBJECT
public:
OnlineMap(const QString &name, const QString &url, const Range &zooms,
2018-08-18 21:06:36 +02:00
const RectC &bounds, qreal tileRatio, const Authorization &authorization,
bool scalable, bool invertY, QObject *parent = 0);
2018-07-13 09:51:41 +02:00
QString name() const {return _name;}
2018-07-13 09:51:41 +02:00
QRectF bounds();
qreal resolution(const QRectF &rect);
int zoom() const {return _zoom;}
2018-04-28 22:18:11 +02:00
void setZoom(int zoom) {_zoom = zoom;}
int zoomFit(const QSize &size, const RectC &rect);
int zoomIn();
int zoomOut();
2018-07-13 09:51:41 +02:00
QPointF ll2xy(const Coordinates &c);
Coordinates xy2ll(const QPointF &p);
2018-08-23 20:26:10 +02:00
void draw(QPainter *painter, const QRectF &rect, Flags flags);
void setDevicePixelRatio(qreal ratio);
void clearCache() {_tileLoader->clearCache();}
2017-10-04 23:15:39 +02:00
private:
int limitZoom(int zoom) const;
2018-08-18 21:06:36 +02:00
qreal tileSize() const;
qreal coordinatesRatio() const;
qreal imageRatio() const;
TileLoader *_tileLoader;
QString _name;
Range _zooms;
RectC _bounds;
int _zoom;
2018-08-18 21:06:36 +02:00
qreal _deviceRatio, _tileRatio;
bool _scalable;
int _scaledSize;
2018-09-22 13:32:54 +02:00
bool _invertY;
};
#endif // ONLINEMAP_H