2017-03-18 01:30:31 +01:00
|
|
|
#ifndef ONLINEMAP_H
|
|
|
|
#define ONLINEMAP_H
|
|
|
|
|
2017-11-26 18:54:03 +01:00
|
|
|
#include "common/range.h"
|
2018-01-28 22:56:08 +01:00
|
|
|
#include "common/rectc.h"
|
2017-03-18 01:30:31 +01:00
|
|
|
#include "map.h"
|
2018-02-20 23:37:19 +01:00
|
|
|
#include "tileloader.h"
|
2017-03-18 01:30:31 +01:00
|
|
|
|
|
|
|
class OnlineMap : public Map
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-09-09 12:33:43 +02:00
|
|
|
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,
|
2018-04-27 21:13:10 +02:00
|
|
|
QObject *parent = 0);
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-07-13 09:51:41 +02:00
|
|
|
QString name() const {return _name;}
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-07-13 09:51:41 +02:00
|
|
|
QRectF bounds();
|
2018-06-30 12:14:58 +02:00
|
|
|
qreal resolution(const QRectF &rect);
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-02-28 22:19:46 +01:00
|
|
|
int zoom() const {return _zoom;}
|
2018-04-28 22:18:11 +02:00
|
|
|
void setZoom(int zoom) {_zoom = zoom;}
|
2018-04-16 20:26:10 +02:00
|
|
|
int zoomFit(const QSize &size, const RectC &rect);
|
2018-02-28 22:19:46 +01:00
|
|
|
int zoomIn();
|
|
|
|
int zoomOut();
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-07-13 09:51:41 +02:00
|
|
|
QPointF ll2xy(const Coordinates &c);
|
|
|
|
Coordinates xy2ll(const QPointF &p);
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-04-28 16:07:32 +02:00
|
|
|
void draw(QPainter *painter, const QRectF &rect, bool block);
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-08-18 21:06:36 +02:00
|
|
|
void setDevicePixelRatio(qreal ratio) {_deviceRatio = ratio;}
|
2018-04-27 19:31:27 +02:00
|
|
|
void clearCache() {_tileLoader->clearCache();}
|
2017-10-04 23:15:39 +02:00
|
|
|
|
2018-02-25 02:31:01 +01:00
|
|
|
bool isValid() const {return _valid;}
|
|
|
|
QString errorString() const {return _errorString;}
|
|
|
|
|
2017-03-18 01:30:31 +01:00
|
|
|
private:
|
2017-09-09 12:33:43 +02:00
|
|
|
int limitZoom(int zoom) const;
|
2018-08-18 21:06:36 +02:00
|
|
|
qreal tileSize() const;
|
|
|
|
qreal coordinatesRatio() const;
|
|
|
|
qreal imageRatio() const;
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-04-27 19:31:27 +02:00
|
|
|
TileLoader *_tileLoader;
|
2017-03-18 01:30:31 +01:00
|
|
|
QString _name;
|
2018-01-28 22:56:08 +01:00
|
|
|
Range _zooms;
|
|
|
|
RectC _bounds;
|
|
|
|
int _zoom;
|
2018-08-18 21:06:36 +02:00
|
|
|
qreal _deviceRatio, _tileRatio;
|
2018-02-25 02:31:01 +01:00
|
|
|
|
|
|
|
bool _valid;
|
|
|
|
QString _errorString;
|
2017-03-18 01:30:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ONLINEMAP_H
|