1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-28 13:41:16 +01:00

Cosmetics

This commit is contained in:
Martin Tůma 2019-08-01 18:58:19 +02:00
parent 5f5b391cd9
commit b72a9e67fe

View File

@ -1017,18 +1017,16 @@ void MapView::setDevicePixelRatio(qreal deviceRatio, qreal mapRatio)
void MapView::setProjection(int id) void MapView::setProjection(int id)
{ {
const PCS *pcs;
const GCS *gcs;
Coordinates center = _map->xy2ll(mapToScene(viewport()->rect().center())); Coordinates center = _map->xy2ll(mapToScene(viewport()->rect().center()));
const PCS *pcs = PCS::pcs(id); if ((pcs = PCS::pcs(id)))
if (pcs)
_projection = Projection(pcs); _projection = Projection(pcs);
else { else if ((gcs = GCS::gcs(id)))
const GCS *gcs = GCS::gcs(id);
if (gcs)
_projection = Projection(gcs); _projection = Projection(gcs);
else else
qWarning("%d: Unknown PCS/GCS id", id); qWarning("%d: Unknown PCS/GCS id", id);
}
_map->setProjection(_projection); _map->setProjection(_projection);
rescale(); rescale();