mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
Code cleanup
This commit is contained in:
parent
51c0c31838
commit
e30078a63e
@ -199,8 +199,8 @@ qreal OnlineMap::zoomFit(const QSize &size, const RectC &br)
|
|||||||
|
|
||||||
qreal OnlineMap::zoomFit(qreal resolution, const Coordinates &c)
|
qreal OnlineMap::zoomFit(qreal resolution, const Coordinates &c)
|
||||||
{
|
{
|
||||||
_zoom = limitZoom((int)(log2((WGS84_RADIUS * 2 * M_PI
|
_zoom = limitZoom((int)log2((WGS84_RADIUS * 2.0 * M_PI
|
||||||
* cos(deg2rad(c.lat()))) / resolution) - log2(TILE_SIZE)));
|
* cos(deg2rad(c.lat()))) / (resolution * TILE_SIZE)));
|
||||||
|
|
||||||
return _zoom;
|
return _zoom;
|
||||||
}
|
}
|
||||||
@ -209,7 +209,7 @@ qreal OnlineMap::resolution(const QPointF &p) const
|
|||||||
{
|
{
|
||||||
qreal scale = zoom2scale(_zoom);
|
qreal scale = zoom2scale(_zoom);
|
||||||
|
|
||||||
return (WGS84_RADIUS * 2 * M_PI * scale / 360.0
|
return (WGS84_RADIUS * 2.0 * M_PI * scale / 360.0
|
||||||
* cos(2.0 * atan(exp(deg2rad(-p.y() * scale))) - M_PI/2));
|
* cos(2.0 * atan(exp(deg2rad(-p.y() * scale))) - M_PI/2));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user