mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-03-16 19:47:45 +01:00
Compare commits
2 Commits
0531389cd8
...
c1235a953e
Author | SHA1 | Date | |
---|---|---|---|
c1235a953e | |||
b123981dde |
@ -1,4 +1,4 @@
|
||||
version: 13.9.{build}
|
||||
version: 13.10.{build}
|
||||
|
||||
configuration:
|
||||
- Release
|
||||
|
@ -3,7 +3,7 @@ unix:!macx:!android {
|
||||
} else {
|
||||
TARGET = GPXSee
|
||||
}
|
||||
VERSION = 13.9
|
||||
VERSION = 13.10
|
||||
|
||||
|
||||
QT += core \
|
||||
|
@ -37,7 +37,7 @@ Unicode true
|
||||
; The name of the installer
|
||||
Name "GPXSee"
|
||||
; Program version
|
||||
!define VERSION "13.9"
|
||||
!define VERSION "13.10"
|
||||
|
||||
; The file to write
|
||||
OutFile "GPXSee-${VERSION}_x64.exe"
|
||||
|
@ -14,7 +14,7 @@ public:
|
||||
QString name() const {return QString();}
|
||||
|
||||
QRectF bounds();
|
||||
RectC llBounds(const Projection &) {return OSM::BOUNDS;}
|
||||
RectC llBounds() {return OSM::BOUNDS;}
|
||||
qreal resolution(const QRectF &rect);
|
||||
|
||||
int zoom() const {return _zoom;}
|
||||
|
@ -19,7 +19,7 @@ public:
|
||||
QString name() const {return _name;}
|
||||
|
||||
QRectF bounds();
|
||||
RectC llBounds(const Projection &) {return _bounds;}
|
||||
RectC llBounds() {return _bounds;}
|
||||
qreal resolution(const QRectF &rect);
|
||||
|
||||
int zoom() const {return _zoom;}
|
||||
|
@ -20,7 +20,7 @@ public:
|
||||
QString name() const {return _name;}
|
||||
|
||||
QRectF bounds();
|
||||
RectC llBounds(const Projection &) {return _wms->bbox();}
|
||||
RectC llBounds() {return _wms->bbox();}
|
||||
|
||||
int zoom() const {return _zoom;}
|
||||
void setZoom(int zoom);
|
||||
|
@ -106,7 +106,7 @@ QRectF WMTSMap::bounds()
|
||||
return lb.isValid() ? lb & tb : tb;
|
||||
}
|
||||
|
||||
RectC WMTSMap::llBounds(const Projection &)
|
||||
RectC WMTSMap::llBounds()
|
||||
{
|
||||
if (_wmts->bbox().isValid())
|
||||
return _wmts->bbox();
|
||||
|
@ -20,7 +20,7 @@ public:
|
||||
QString name() const {return _name;}
|
||||
|
||||
QRectF bounds();
|
||||
RectC llBounds(const Projection &);
|
||||
RectC llBounds();
|
||||
|
||||
int zoom() const {return _zoom;}
|
||||
void setZoom(int zoom);
|
||||
|
Loading…
x
Reference in New Issue
Block a user