1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-09 16:54:28 +02:00

Added support for OziExplorer offline maps

This commit is contained in:
2017-03-18 01:30:31 +01:00
parent 278aa904c1
commit b21c2267cf
47 changed files with 1379 additions and 607 deletions

View File

@ -48,3 +48,9 @@ int str2int(const char *str, int len)
return res;
}
QRectF scaled(const QRectF &rect, qreal factor)
{
return QRectF(QPointF(rect.left() * factor, rect.top() * factor),
QSizeF(rect.width() * factor, rect.height() * factor));
}