mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
66 lines
1.3 KiB
C++
66 lines
1.3 KiB
C++
#ifndef WMSMAP_H
|
|
#define WMSMAP_H
|
|
|
|
#include "transform.h"
|
|
#include "projection.h"
|
|
#include "map.h"
|
|
#include "wms.h"
|
|
#include "rectd.h"
|
|
|
|
class TileLoader;
|
|
|
|
class WMSMap : public Map
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
WMSMap(const QString &name, const WMS::Setup &setup, QObject *parent = 0);
|
|
|
|
QString name() const {return _name;}
|
|
|
|
QRectF bounds();
|
|
|
|
int zoom() const {return _zoom;}
|
|
void setZoom(int zoom);
|
|
int zoomFit(const QSize &size, const RectC &rect);
|
|
int zoomIn();
|
|
int zoomOut();
|
|
|
|
QPointF ll2xy(const Coordinates &c);
|
|
Coordinates xy2ll(const QPointF &p);
|
|
|
|
void draw(QPainter *painter, const QRectF &rect, Flags flags);
|
|
|
|
void setDevicePixelRatio(qreal ratio) {_ratio = ratio;}
|
|
void clearCache();
|
|
|
|
bool isValid() const {return _valid;}
|
|
QString errorString() const {return _errorString;}
|
|
|
|
private:
|
|
QString tileUrl(const QString &version) const;
|
|
double sd2res(double scaleDenominator) const;
|
|
QString tilesDir() const;
|
|
void computeZooms(const RangeF &scaleDenominator);
|
|
void updateTransform();
|
|
bool loadWMS();
|
|
qreal tileSize() const;
|
|
|
|
QString _name;
|
|
|
|
WMS::Setup _setup;
|
|
TileLoader *_tileLoader;
|
|
Projection _projection;
|
|
Transform _transform;
|
|
CoordinateSystem _cs;
|
|
QVector<double> _zooms;
|
|
RectD _bbox;
|
|
int _zoom;
|
|
qreal _ratio;
|
|
|
|
bool _valid;
|
|
QString _errorString;
|
|
};
|
|
|
|
#endif // WMSMAP_H
|