mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-18 03:52:11 +01:00
OP37/GCS Some optimizations
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@958 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
parent
423b94d414
commit
8fd41c4854
@ -148,7 +148,7 @@ namespace internals {
|
||||
QWaitCondition wait;
|
||||
QMutex m;
|
||||
m.lock();
|
||||
wait.wait(&m,1111);
|
||||
wait.wait(&m,500);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -171,6 +171,7 @@ namespace internals {
|
||||
|
||||
delete t;
|
||||
t = 0;
|
||||
emit OnNeedInvalidation();
|
||||
}
|
||||
|
||||
// layers = null;
|
||||
|
@ -189,7 +189,7 @@ public:
|
||||
|
||||
|
||||
signals:
|
||||
void OnCurrentPositionChanged(PointLatLng point);
|
||||
void OnCurrentPositionChanged(internals::PointLatLng point);
|
||||
void OnTileLoadComplete();
|
||||
void OnTilesStillToLoad(int number);
|
||||
void OnTileLoadStart();
|
||||
|
@ -62,8 +62,8 @@ internals::PointLatLng MercatorProjectionYandex::FromPixelToLatLng(const int &x,
|
||||
{
|
||||
Size s = GetTileMatrixSizePixel(zoom);
|
||||
|
||||
double mapSizeX = s.Width();
|
||||
double mapSizeY = s.Height();
|
||||
//double mapSizeX = s.Width();
|
||||
//double mapSizeY = s.Height();
|
||||
|
||||
double a = 6378137;
|
||||
double c1 = 0.00335655146887969;
|
||||
|
@ -43,7 +43,7 @@ Point PlateCarreeProjection::FromLatLngToPixel(double lat, double lng, const int
|
||||
|
||||
Size s = GetTileMatrixSizePixel(zoom);
|
||||
double mapSizeX = s.Width();
|
||||
double mapSizeY = s.Height();
|
||||
//double mapSizeY = s.Height();
|
||||
|
||||
double scale = 360.0 / mapSizeX;
|
||||
|
||||
@ -59,7 +59,7 @@ internals::PointLatLng PlateCarreeProjection::FromPixelToLatLng(const int &x, co
|
||||
|
||||
Size s = GetTileMatrixSizePixel(zoom);
|
||||
double mapSizeX = s.Width();
|
||||
double mapSizeY = s.Height();
|
||||
//double mapSizeY = s.Height();
|
||||
|
||||
double scale = 360.0 / mapSizeX;
|
||||
|
||||
|
@ -42,7 +42,7 @@ Point PlateCarreeProjectionPergo::FromLatLngToPixel(double lat, double lng, cons
|
||||
|
||||
Size s = GetTileMatrixSizePixel(zoom);
|
||||
double mapSizeX = s.Width();
|
||||
double mapSizeY = s.Height();
|
||||
//double mapSizeY = s.Height();
|
||||
|
||||
double scale = 360.0 / mapSizeX;
|
||||
|
||||
@ -57,7 +57,7 @@ internals::PointLatLng PlateCarreeProjectionPergo::FromPixelToLatLng(const int &
|
||||
|
||||
Size s = GetTileMatrixSizePixel(zoom);
|
||||
double mapSizeX = s.Width();
|
||||
double mapSizeY = s.Height();
|
||||
//double mapSizeY = s.Height();
|
||||
|
||||
double scale = 360.0 / mapSizeX;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user