1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

LP-261 introduce environment variable GCS_GOOGLE_SAT_VERSION

upgraded default version from 184 to 193
This commit is contained in:
Philippe Renon 2016-03-18 22:27:25 +01:00
parent 9e6989d6a1
commit 1947ae966c

View File

@ -41,7 +41,8 @@ ProviderStrings::ProviderStrings()
{
// Google version strings
VersionGoogleMap = "m@301";
VersionGoogleSatellite = "184";
QString version = qgetenv("GCS_GOOGLE_SAT_VERSION").constData();
VersionGoogleSatellite = version.isEmpty() ? "193" : version;
VersionGoogleLabels = "h@301";
VersionGoogleTerrain = "t@132,r@301";
SecGoogleWord = "Galileo";