mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-01 09:24:10 +01:00
Merged in filnet/librepilot/LP-261_upgrade_gcs_map_versions (pull request #201)
LP-261 introduce environment variable GCS_GOOGLE_SAT_VERSION
This commit is contained in:
commit
75a8d99068
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user