1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/map/onlinemap.cpp

147 lines
3.7 KiB
C++
Raw Normal View History

#include <QPainter>
2017-11-26 18:54:03 +01:00
#include "common/coordinates.h"
#include "common/rectc.h"
#include "common/wgs84.h"
#include "downloader.h"
2018-09-20 07:59:47 +02:00
#include "osm.h"
#include "config.h"
#include "onlinemap.h"
#define TILE_SIZE 256
OnlineMap::OnlineMap(const QString &name, const QString &url,
2018-08-18 21:06:36 +02:00
const Range &zooms, const RectC &bounds, qreal tileRatio,
const Authorization &authorization, QObject *parent)
: Map(parent), _name(name), _zooms(zooms), _bounds(bounds),
_zoom(_zooms.max()), _deviceRatio(1.0), _tileRatio(tileRatio), _valid(false)
{
2018-02-25 02:31:01 +01:00
QString dir(TILES_DIR + "/" + _name);
_tileLoader = new TileLoader(this);
_tileLoader->setUrl(url);
_tileLoader->setDir(dir);
2018-04-27 21:13:10 +02:00
_tileLoader->setAuthorization(authorization);
connect(_tileLoader, SIGNAL(finished()), this, SIGNAL(loaded()));
2018-02-25 02:31:01 +01:00
if (!QDir().mkpath(dir)) {
_errorString = "Error creating tiles dir";
return;
}
_valid = true;
}
2018-07-13 09:51:41 +02:00
QRectF OnlineMap::bounds()
{
return QRectF(ll2xy(_bounds.topLeft()), ll2xy(_bounds.bottomRight()));
}
int OnlineMap::limitZoom(int zoom) const
{
if (zoom < _zooms.min())
return _zooms.min();
if (zoom > _zooms.max())
return _zooms.max();
return zoom;
}
int OnlineMap::zoomFit(const QSize &size, const RectC &rect)
{
if (!rect.isValid())
_zoom = _zooms.max();
else {
2018-09-20 07:59:47 +02:00
QRectF tbr(osm::ll2m(rect.topLeft()), osm::ll2m(rect.bottomRight()));
QPointF sc(tbr.width() / size.width(), tbr.height() / size.height());
2018-09-20 07:59:47 +02:00
_zoom = limitZoom(osm::scale2zoom(qMax(sc.x(), -sc.y())
/ coordinatesRatio(), TILE_SIZE));
}
2017-06-25 16:23:43 +02:00
return _zoom;
}
qreal OnlineMap::resolution(const QRectF &rect)
{
qreal scale = osm::zoom2scale(_zoom, TILE_SIZE);
2017-06-25 16:23:43 +02:00
2017-11-27 23:50:55 +01:00
return (WGS84_RADIUS * 2.0 * M_PI * scale / 360.0
* cos(2.0 * atan(exp(deg2rad(-rect.center().y() * scale))) - M_PI/2));
}
int OnlineMap::zoomIn()
{
_zoom = qMin(_zoom + 1, _zooms.max());
2017-06-25 16:23:43 +02:00
return _zoom;
}
int OnlineMap::zoomOut()
{
_zoom = qMax(_zoom - 1, _zooms.min());
2017-06-25 16:23:43 +02:00
return _zoom;
}
2018-08-18 21:06:36 +02:00
qreal OnlineMap::coordinatesRatio() const
{
return _deviceRatio > 1.0 ? _deviceRatio / _tileRatio : 1.0;
}
qreal OnlineMap::imageRatio() const
{
return _deviceRatio > 1.0 ? _deviceRatio : _tileRatio;
}
qreal OnlineMap::tileSize() const
{
return (TILE_SIZE / coordinatesRatio());
}
2018-08-23 20:26:10 +02:00
void OnlineMap::draw(QPainter *painter, const QRectF &rect, Flags flags)
{
qreal scale = osm::zoom2scale(_zoom, TILE_SIZE);
QRectF b(bounds());
2018-09-20 07:59:47 +02:00
QPoint tile = osm::mercator2tile(QPointF(rect.topLeft().x() * scale,
2018-08-18 21:06:36 +02:00
-rect.topLeft().y() * scale) * coordinatesRatio(), _zoom);
QPointF tl(floor(rect.left() / tileSize())
* tileSize(), floor(rect.top() / tileSize()) * tileSize());
QList<Tile> tiles;
QSizeF s(qMin(rect.right() - tl.x(), b.width()),
qMin(rect.bottom() - tl.y(), b.height()));
2018-08-18 21:06:36 +02:00
for (int i = 0; i < ceil(s.width() / tileSize()); i++)
for (int j = 0; j < ceil(s.height() / tileSize()); j++)
2017-06-25 16:23:43 +02:00
tiles.append(Tile(QPoint(tile.x() + i, tile.y() + j), _zoom));
2018-08-23 20:26:10 +02:00
if (flags & Map::Block)
_tileLoader->loadTilesSync(tiles);
else
_tileLoader->loadTilesAsync(tiles);
for (int i = 0; i < tiles.count(); i++) {
Tile &t = tiles[i];
QPointF tp(qMax(tl.x(), b.left()) + (t.xy().x() - tile.x()) * tileSize(),
qMax(tl.y(), b.top()) + (t.xy().y() - tile.y()) * tileSize());
2018-08-18 21:06:36 +02:00
if (!t.pixmap().isNull()) {
#ifdef ENABLE_HIDPI
t.pixmap().setDevicePixelRatio(imageRatio());
#endif // ENABLE_HIDPI
2018-02-20 23:37:19 +01:00
painter->drawPixmap(tp, t.pixmap());
2018-08-18 21:06:36 +02:00
}
}
}
2018-07-13 09:51:41 +02:00
QPointF OnlineMap::ll2xy(const Coordinates &c)
{
qreal scale = osm::zoom2scale(_zoom, TILE_SIZE);
2018-09-20 07:59:47 +02:00
QPointF m = osm::ll2m(c);
2018-08-18 21:06:36 +02:00
return QPointF(m.x() / scale, m.y() / -scale) / coordinatesRatio();
}
2018-07-13 09:51:41 +02:00
Coordinates OnlineMap::xy2ll(const QPointF &p)
{
qreal scale = osm::zoom2scale(_zoom, TILE_SIZE);
2018-09-20 07:59:47 +02:00
return osm::m2ll(QPointF(p.x() * scale, -p.y() * scale)
* coordinatesRatio());
}