2018-10-06 23:14:46 +02:00
|
|
|
#include <QtCore>
|
2017-03-18 01:30:31 +01:00
|
|
|
#include <QPainter>
|
2018-11-02 20:01:19 +01:00
|
|
|
#include <QDir>
|
2017-11-26 18:54:03 +01:00
|
|
|
#include "common/rectc.h"
|
2018-11-02 20:01:19 +01:00
|
|
|
#include "common/programpaths.h"
|
2021-08-26 22:22:18 +02:00
|
|
|
#include "common/downloader.h"
|
2018-09-20 07:59:47 +02:00
|
|
|
#include "osm.h"
|
2017-03-18 01:30:31 +01:00
|
|
|
#include "onlinemap.h"
|
|
|
|
|
|
|
|
|
2020-12-02 23:58:11 +01:00
|
|
|
OnlineMap::OnlineMap(const QString &fileName, const QString &name,
|
|
|
|
const QString &url, const Range &zooms, const RectC &bounds, qreal tileRatio,
|
2018-11-17 10:10:35 +01:00
|
|
|
const Authorization &authorization, int tileSize, bool scalable, bool invertY,
|
2019-05-20 23:23:24 +02:00
|
|
|
bool quadTiles, QObject *parent)
|
2020-12-02 23:58:11 +01:00
|
|
|
: Map(fileName, parent), _name(name), _zooms(zooms), _bounds(bounds),
|
2018-11-17 10:10:35 +01:00
|
|
|
_zoom(_zooms.max()), _mapRatio(1.0), _tileRatio(tileRatio),
|
2019-05-20 23:23:24 +02:00
|
|
|
_tileSize(tileSize), _scalable(scalable), _invertY(invertY)
|
2017-03-18 01:30:31 +01:00
|
|
|
{
|
2018-11-02 20:01:19 +01:00
|
|
|
_tileLoader = new TileLoader(QDir(ProgramPaths::tilesDir()).filePath(_name),
|
|
|
|
this);
|
2018-04-27 19:31:27 +02:00
|
|
|
_tileLoader->setUrl(url);
|
2018-04-27 21:13:10 +02:00
|
|
|
_tileLoader->setAuthorization(authorization);
|
2019-05-20 23:23:24 +02:00
|
|
|
_tileLoader->setQuadTiles(quadTiles);
|
2021-04-28 00:01:07 +02:00
|
|
|
connect(_tileLoader, &TileLoader::finished, this, &OnlineMap::tilesLoaded);
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 09:51:41 +02:00
|
|
|
QRectF OnlineMap::bounds()
|
2017-03-18 01:30:31 +01:00
|
|
|
{
|
2018-01-28 22:56:08 +01:00
|
|
|
return QRectF(ll2xy(_bounds.topLeft()), ll2xy(_bounds.bottomRight()));
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|
|
|
|
|
2017-09-09 12:33:43 +02:00
|
|
|
int OnlineMap::limitZoom(int zoom) const
|
|
|
|
{
|
|
|
|
if (zoom < _zooms.min())
|
|
|
|
return _zooms.min();
|
|
|
|
if (zoom > _zooms.max())
|
|
|
|
return _zooms.max();
|
|
|
|
|
|
|
|
return zoom;
|
|
|
|
}
|
|
|
|
|
2018-04-16 20:26:10 +02:00
|
|
|
int OnlineMap::zoomFit(const QSize &size, const RectC &rect)
|
2017-03-18 01:30:31 +01:00
|
|
|
{
|
2018-04-16 20:26:10 +02:00
|
|
|
if (!rect.isValid())
|
2017-09-09 12:33:43 +02:00
|
|
|
_zoom = _zooms.max();
|
2017-03-18 01:30:31 +01:00
|
|
|
else {
|
2018-09-25 21:07:44 +02:00
|
|
|
QRectF tbr(OSM::ll2m(rect.topLeft()), OSM::ll2m(rect.bottomRight()));
|
2017-03-18 01:30:31 +01:00
|
|
|
QPointF sc(tbr.width() / size.width(), tbr.height() / size.height());
|
2018-09-25 21:07:44 +02:00
|
|
|
_zoom = limitZoom(OSM::scale2zoom(qMax(sc.x(), -sc.y())
|
2018-11-17 10:10:35 +01:00
|
|
|
/ coordinatesRatio(), _tileSize));
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|
|
|
|
|
2017-06-25 16:23:43 +02:00
|
|
|
return _zoom;
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|
|
|
|
|
2018-06-30 12:14:58 +02:00
|
|
|
qreal OnlineMap::resolution(const QRectF &rect)
|
2017-03-18 01:30:31 +01:00
|
|
|
{
|
2018-11-17 10:10:35 +01:00
|
|
|
return OSM::resolution(rect.center(), _zoom, _tileSize);
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|
|
|
|
|
2018-02-28 22:19:46 +01:00
|
|
|
int OnlineMap::zoomIn()
|
2017-03-18 01:30:31 +01:00
|
|
|
{
|
2017-09-09 12:33:43 +02:00
|
|
|
_zoom = qMin(_zoom + 1, _zooms.max());
|
2017-06-25 16:23:43 +02:00
|
|
|
return _zoom;
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|
|
|
|
|
2018-02-28 22:19:46 +01:00
|
|
|
int OnlineMap::zoomOut()
|
2017-03-18 01:30:31 +01:00
|
|
|
{
|
2017-09-09 12:33:43 +02:00
|
|
|
_zoom = qMax(_zoom - 1, _zooms.min());
|
2017-06-25 16:23:43 +02:00
|
|
|
return _zoom;
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|
|
|
|
|
2018-11-17 10:10:35 +01:00
|
|
|
void OnlineMap::setDevicePixelRatio(qreal deviceRatio, qreal mapRatio)
|
2018-11-15 00:38:03 +01:00
|
|
|
{
|
2018-11-17 10:10:35 +01:00
|
|
|
_mapRatio = mapRatio;
|
2018-11-15 00:38:03 +01:00
|
|
|
|
|
|
|
if (_scalable) {
|
2019-05-20 23:23:24 +02:00
|
|
|
_tileLoader->setScaledSize(_tileSize * deviceRatio);
|
2018-11-17 10:10:35 +01:00
|
|
|
_tileRatio = deviceRatio;
|
2018-11-15 00:38:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-18 21:06:36 +02:00
|
|
|
qreal OnlineMap::coordinatesRatio() const
|
|
|
|
{
|
2018-11-17 10:10:35 +01:00
|
|
|
return _mapRatio > 1.0 ? _mapRatio / _tileRatio : 1.0;
|
2018-08-18 21:06:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
qreal OnlineMap::imageRatio() const
|
|
|
|
{
|
2018-11-17 10:10:35 +01:00
|
|
|
return _mapRatio > 1.0 ? _mapRatio : _tileRatio;
|
2018-08-18 21:06:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
qreal OnlineMap::tileSize() const
|
|
|
|
{
|
2018-11-17 10:10:35 +01:00
|
|
|
return (_tileSize / coordinatesRatio());
|
2018-08-18 21:06:36 +02:00
|
|
|
}
|
|
|
|
|
2018-08-23 20:26:10 +02:00
|
|
|
void OnlineMap::draw(QPainter *painter, const QRectF &rect, Flags flags)
|
2017-03-18 01:30:31 +01:00
|
|
|
{
|
2018-11-17 10:10:35 +01:00
|
|
|
qreal scale = OSM::zoom2scale(_zoom, _tileSize);
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-09-25 21:07:44 +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());
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-10-09 22:46:28 +02:00
|
|
|
QSizeF s(rect.right() - tl.x(), rect.bottom() - tl.y());
|
|
|
|
int width = _zoom ? qCeil(s.width() / tileSize()) : 1;
|
|
|
|
int height = _zoom ? qCeil(s.height() / tileSize()) : 1;
|
2018-10-05 07:10:49 +02:00
|
|
|
|
2022-07-06 14:58:41 +02:00
|
|
|
QVector<FetchTile> tiles;
|
2018-10-05 07:10:49 +02:00
|
|
|
tiles.reserve(width * height);
|
|
|
|
for (int i = 0; i < width; i++)
|
|
|
|
for (int j = 0; j < height; j++)
|
2022-07-06 14:58:41 +02:00
|
|
|
tiles.append(FetchTile(QPoint(tile.x() + i, _invertY ? (1<<_zoom)
|
2019-05-20 23:23:24 +02:00
|
|
|
- (tile.y() + j) - 1 : tile.y() + j), _zoom));
|
2017-03-18 01:30:31 +01:00
|
|
|
|
2018-08-23 20:26:10 +02:00
|
|
|
if (flags & Map::Block)
|
2018-04-27 19:31:27 +02:00
|
|
|
_tileLoader->loadTilesSync(tiles);
|
2017-03-18 01:30:31 +01:00
|
|
|
else
|
2018-04-27 19:31:27 +02:00
|
|
|
_tileLoader->loadTilesAsync(tiles);
|
2017-03-18 01:30:31 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < tiles.count(); i++) {
|
2022-07-06 14:58:41 +02:00
|
|
|
FetchTile &t = tiles[i];
|
2018-09-23 21:07:16 +02:00
|
|
|
QPointF tp = _zoom ? QPointF(tl.x() + (t.xy().x() - tile.x())
|
|
|
|
* tileSize(), tl.y() + ((_invertY ? (1<<_zoom) - t.xy().y() - 1 :
|
2019-10-02 23:58:58 +02:00
|
|
|
t.xy().y()) - tile.y()) * tileSize())
|
|
|
|
: QPointF(-_tileSize/2, -_tileSize/2);
|
2018-09-23 21:07:16 +02:00
|
|
|
|
2018-08-18 21:06:36 +02:00
|
|
|
if (!t.pixmap().isNull()) {
|
|
|
|
t.pixmap().setDevicePixelRatio(imageRatio());
|
2018-02-20 23:37:19 +01:00
|
|
|
painter->drawPixmap(tp, t.pixmap());
|
2018-08-18 21:06:36 +02:00
|
|
|
}
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-13 09:51:41 +02:00
|
|
|
QPointF OnlineMap::ll2xy(const Coordinates &c)
|
2017-03-18 01:30:31 +01:00
|
|
|
{
|
2018-11-17 10:10:35 +01:00
|
|
|
qreal scale = OSM::zoom2scale(_zoom, _tileSize);
|
2018-09-25 21:07:44 +02:00
|
|
|
QPointF m = OSM::ll2m(c);
|
2018-08-18 21:06:36 +02:00
|
|
|
return QPointF(m.x() / scale, m.y() / -scale) / coordinatesRatio();
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 09:51:41 +02:00
|
|
|
Coordinates OnlineMap::xy2ll(const QPointF &p)
|
2017-03-18 01:30:31 +01:00
|
|
|
{
|
2018-11-17 10:10:35 +01:00
|
|
|
qreal scale = OSM::zoom2scale(_zoom, _tileSize);
|
2018-09-25 21:07:44 +02:00
|
|
|
return OSM::m2ll(QPointF(p.x() * scale, -p.y() * scale)
|
2018-09-20 07:59:47 +02:00
|
|
|
* coordinatesRatio());
|
2017-03-18 01:30:31 +01:00
|
|
|
}
|