2018-10-06 23:14:46 +02:00
|
|
|
#include <QtCore>
|
2018-02-20 23:37:19 +01:00
|
|
|
#include <QPainter>
|
2018-11-02 20:01:19 +01:00
|
|
|
#include <QDir>
|
2018-02-20 23:37:19 +01:00
|
|
|
#include "common/rectc.h"
|
2018-02-22 21:02:56 +01:00
|
|
|
#include "common/wgs84.h"
|
2018-11-02 20:01:19 +01:00
|
|
|
#include "common/programpaths.h"
|
2018-02-20 23:37:19 +01:00
|
|
|
#include "transform.h"
|
2018-04-28 19:08:21 +02:00
|
|
|
#include "tileloader.h"
|
2018-02-20 23:37:19 +01:00
|
|
|
#include "wmts.h"
|
|
|
|
#include "wmtsmap.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define CAPABILITIES_FILE "capabilities.xml"
|
|
|
|
|
2020-12-02 23:58:11 +01:00
|
|
|
WMTSMap::WMTSMap(const QString &fileName, const QString &name,
|
|
|
|
const WMTS::Setup &setup, qreal tileRatio,
|
|
|
|
QObject *parent) : Map(fileName, parent), _name(name), _tileLoader(0),
|
|
|
|
_zoom(0), _mapRatio(1.0), _tileRatio(tileRatio)
|
2018-02-20 23:37:19 +01:00
|
|
|
{
|
2020-03-17 21:06:51 +01:00
|
|
|
QString tilesDir(QDir(ProgramPaths::tilesDir()).filePath(_name));
|
2018-03-30 10:25:05 +02:00
|
|
|
|
2020-03-17 21:06:51 +01:00
|
|
|
_tileLoader = new TileLoader(tilesDir, this);
|
|
|
|
_tileLoader->setAuthorization(setup.authorization());
|
|
|
|
connect(_tileLoader, SIGNAL(finished()), this, SIGNAL(tilesLoaded()));
|
2018-03-30 10:25:05 +02:00
|
|
|
|
2020-03-17 21:06:51 +01:00
|
|
|
_wmts = new WMTS(QDir(tilesDir).filePath(CAPABILITIES_FILE), setup, this);
|
|
|
|
connect(_wmts, SIGNAL(downloadFinished()), this, SLOT(wmtsReady()));
|
|
|
|
if (_wmts->isReady())
|
|
|
|
init();
|
|
|
|
}
|
2018-04-05 20:38:23 +02:00
|
|
|
|
2020-03-17 21:06:51 +01:00
|
|
|
void WMTSMap::init()
|
|
|
|
{
|
|
|
|
_tileLoader->setUrl(_wmts->tileUrl());
|
|
|
|
_bounds = RectD(_wmts->bbox(), _wmts->projection());
|
2018-02-20 23:37:19 +01:00
|
|
|
updateTransform();
|
2018-03-30 10:25:05 +02:00
|
|
|
}
|
|
|
|
|
2020-03-17 21:06:51 +01:00
|
|
|
void WMTSMap::wmtsReady()
|
2018-03-30 10:25:05 +02:00
|
|
|
{
|
2020-03-17 21:06:51 +01:00
|
|
|
if (_wmts->isValid())
|
|
|
|
init();
|
2018-04-27 19:31:27 +02:00
|
|
|
|
2020-03-17 21:06:51 +01:00
|
|
|
emit mapLoaded();
|
2018-03-30 10:25:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void WMTSMap::clearCache()
|
|
|
|
{
|
2018-04-27 19:31:27 +02:00
|
|
|
_tileLoader->clearCache();
|
2018-02-20 23:37:19 +01:00
|
|
|
}
|
|
|
|
|
2018-04-13 21:14:12 +02:00
|
|
|
double WMTSMap::sd2res(double scaleDenominator) const
|
2018-02-20 23:37:19 +01:00
|
|
|
{
|
2020-03-17 21:06:51 +01:00
|
|
|
return scaleDenominator * 0.28e-3
|
|
|
|
* _wmts->projection().units().fromMeters(1.0);
|
2018-02-20 23:37:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void WMTSMap::updateTransform()
|
|
|
|
{
|
2020-03-17 21:06:51 +01:00
|
|
|
const WMTS::Zoom &z = _wmts->zooms().at(_zoom);
|
2018-02-20 23:37:19 +01:00
|
|
|
|
2020-03-17 21:06:51 +01:00
|
|
|
PointD topLeft = (_wmts->cs().axisOrder() == CoordinateSystem::YX)
|
2018-04-15 16:27:47 +02:00
|
|
|
? PointD(z.topLeft().y(), z.topLeft().x()) : z.topLeft();
|
2018-04-05 20:38:23 +02:00
|
|
|
|
2018-04-13 21:14:12 +02:00
|
|
|
double pixelSpan = sd2res(z.scaleDenominator());
|
2020-03-17 21:06:51 +01:00
|
|
|
if (_wmts->projection().isGeographic())
|
2018-02-22 21:02:56 +01:00
|
|
|
pixelSpan /= deg2rad(WGS84_RADIUS);
|
2019-01-08 21:42:28 +01:00
|
|
|
_transform = Transform(ReferencePoint(PointD(0, 0), topLeft),
|
|
|
|
PointD(pixelSpan, pixelSpan));
|
2018-02-20 23:37:19 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 09:51:41 +02:00
|
|
|
QRectF WMTSMap::bounds()
|
2018-02-20 23:37:19 +01:00
|
|
|
{
|
2020-03-17 21:06:51 +01:00
|
|
|
const WMTS::Zoom &z = _wmts->zooms().at(_zoom);
|
2018-02-24 16:44:30 +01:00
|
|
|
QRectF tileBounds, bounds;
|
2018-02-24 10:34:27 +01:00
|
|
|
|
2018-03-30 10:25:05 +02:00
|
|
|
tileBounds = (z.limits().isNull()) ?
|
|
|
|
QRectF(QPointF(0, 0), QSize(z.tile().width() * z.matrix().width(),
|
|
|
|
z.tile().height() * z.matrix().height()))
|
|
|
|
: QRectF(QPointF(z.limits().left() * z.tile().width(), z.limits().top()
|
|
|
|
* z.tile().height()), QSize(z.tile().width() * z.limits().width(),
|
|
|
|
z.tile().height() * z.limits().height()));
|
2018-02-24 16:44:30 +01:00
|
|
|
|
2019-01-08 21:42:28 +01:00
|
|
|
if (_bounds.isValid())
|
|
|
|
bounds = QRectF(_transform.proj2img(_bounds.topLeft())
|
2020-03-17 21:06:51 +01:00
|
|
|
/ coordinatesRatio(), _transform.proj2img(
|
|
|
|
_bounds.bottomRight()) / coordinatesRatio());
|
2019-01-08 21:42:28 +01:00
|
|
|
return bounds.isValid() ? tileBounds.intersected(bounds) : tileBounds;
|
2018-02-20 23:37:19 +01:00
|
|
|
}
|
|
|
|
|
2018-04-16 20:26:10 +02:00
|
|
|
int WMTSMap::zoomFit(const QSize &size, const RectC &rect)
|
2018-02-20 23:37:19 +01:00
|
|
|
{
|
2018-04-16 20:26:10 +02:00
|
|
|
if (rect.isValid()) {
|
2020-03-17 21:06:51 +01:00
|
|
|
RectD prect(rect, _wmts->projection());
|
2019-01-14 23:47:24 +01:00
|
|
|
PointD sc(prect.width() / size.width(), prect.height() / size.height());
|
2018-04-16 20:26:10 +02:00
|
|
|
double resolution = qMax(qAbs(sc.x()), qAbs(sc.y()));
|
2020-03-17 21:06:51 +01:00
|
|
|
if (_wmts->projection().isGeographic())
|
2018-02-22 21:02:56 +01:00
|
|
|
resolution *= deg2rad(WGS84_RADIUS);
|
2018-02-20 23:37:19 +01:00
|
|
|
|
2018-02-25 19:33:12 +01:00
|
|
|
_zoom = 0;
|
2020-03-17 21:06:51 +01:00
|
|
|
for (int i = 0; i < _wmts->zooms().size(); i++) {
|
|
|
|
if (sd2res(_wmts->zooms().at(i).scaleDenominator()) < resolution
|
2018-08-18 21:06:36 +02:00
|
|
|
/ coordinatesRatio())
|
2018-02-20 23:37:19 +01:00
|
|
|
break;
|
|
|
|
_zoom = i;
|
|
|
|
}
|
2018-02-25 19:33:12 +01:00
|
|
|
} else
|
2020-03-17 21:06:51 +01:00
|
|
|
_zoom = _wmts->zooms().size() - 1;
|
2018-02-20 23:37:19 +01:00
|
|
|
|
|
|
|
updateTransform();
|
|
|
|
return _zoom;
|
|
|
|
}
|
|
|
|
|
2018-04-28 22:18:11 +02:00
|
|
|
void WMTSMap::setZoom(int zoom)
|
|
|
|
{
|
|
|
|
_zoom = zoom;
|
|
|
|
updateTransform();
|
|
|
|
}
|
|
|
|
|
2018-02-28 22:19:46 +01:00
|
|
|
int WMTSMap::zoomIn()
|
2018-02-20 23:37:19 +01:00
|
|
|
{
|
2020-03-17 21:06:51 +01:00
|
|
|
_zoom = qMin(_zoom + 1, _wmts->zooms().size() - 1);
|
2018-02-20 23:37:19 +01:00
|
|
|
updateTransform();
|
|
|
|
return _zoom;
|
|
|
|
}
|
|
|
|
|
2018-02-28 22:19:46 +01:00
|
|
|
int WMTSMap::zoomOut()
|
2018-02-20 23:37:19 +01:00
|
|
|
{
|
|
|
|
_zoom = qMax(_zoom - 1, 0);
|
|
|
|
updateTransform();
|
|
|
|
return _zoom;
|
|
|
|
}
|
|
|
|
|
2018-08-18 21:06:36 +02:00
|
|
|
qreal WMTSMap::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 WMTSMap::imageRatio() const
|
|
|
|
{
|
2018-11-17 10:10:35 +01:00
|
|
|
return _mapRatio > 1.0 ? _mapRatio : _tileRatio;
|
2018-08-18 21:06:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QSizeF WMTSMap::tileSize(const WMTS::Zoom &zoom) const
|
|
|
|
{
|
|
|
|
return QSizeF(zoom.tile().width() / coordinatesRatio(),
|
|
|
|
zoom.tile().height() / coordinatesRatio());
|
|
|
|
}
|
|
|
|
|
2018-08-23 20:26:10 +02:00
|
|
|
void WMTSMap::draw(QPainter *painter, const QRectF &rect, Flags flags)
|
2018-02-20 23:37:19 +01:00
|
|
|
{
|
2020-03-17 21:06:51 +01:00
|
|
|
const WMTS::Zoom &z = _wmts->zooms().at(_zoom);
|
2018-08-18 21:06:36 +02:00
|
|
|
QSizeF ts(tileSize(z));
|
|
|
|
|
2018-10-06 21:15:06 +02:00
|
|
|
QPoint tl = QPoint(qFloor(rect.left() / ts.width()),
|
|
|
|
qFloor(rect.top() / ts.height()));
|
|
|
|
QPoint br = QPoint(qCeil(rect.right() / ts.width()),
|
|
|
|
qCeil(rect.bottom() / ts.height()));
|
2018-02-20 23:37:19 +01:00
|
|
|
|
2018-10-05 07:10:49 +02:00
|
|
|
QVector<Tile> tiles;
|
|
|
|
tiles.reserve((br.x() - tl.x()) * (br.y() - tl.y()));
|
2018-02-24 01:59:03 +01:00
|
|
|
for (int i = tl.x(); i < br.x(); i++)
|
|
|
|
for (int j = tl.y(); j < br.y(); j++)
|
2018-03-30 10:25:05 +02:00
|
|
|
tiles.append(Tile(QPoint(i, j), z.id()));
|
2018-02-20 23:37:19 +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);
|
2018-02-20 23:37:19 +01:00
|
|
|
else
|
2018-04-27 19:31:27 +02:00
|
|
|
_tileLoader->loadTilesAsync(tiles);
|
2018-02-20 23:37:19 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < tiles.count(); i++) {
|
|
|
|
Tile &t = tiles[i];
|
2018-08-18 21:06:36 +02:00
|
|
|
QPointF tp(t.xy().x() * ts.width(), t.xy().y() * ts.height());
|
|
|
|
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-02-20 23:37:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-13 09:51:41 +02:00
|
|
|
QPointF WMTSMap::ll2xy(const Coordinates &c)
|
2018-02-20 23:37:19 +01:00
|
|
|
{
|
2020-03-17 21:06:51 +01:00
|
|
|
return _transform.proj2img(_wmts->projection().ll2xy(c))
|
|
|
|
/ coordinatesRatio();
|
2018-02-20 23:37:19 +01:00
|
|
|
}
|
|
|
|
|
2018-07-13 09:51:41 +02:00
|
|
|
Coordinates WMTSMap::xy2ll(const QPointF &p)
|
2018-02-20 23:37:19 +01:00
|
|
|
{
|
2020-03-17 21:06:51 +01:00
|
|
|
return _wmts->projection().xy2ll(_transform.img2proj(p
|
|
|
|
* coordinatesRatio()));
|
2018-02-20 23:37:19 +01:00
|
|
|
}
|