forked from organicmaps/organicmaps-tmp
[ios] Allow location update when app is in background
The app is configured to update the GPS location in the background but this information is not passed to the framework. With this commit the GPS location is passed to the framework even when the app is in background. This results in a higher battery usage if there is an active route but the battery usage will remain the same if no route is active because the GPS location is not updated. Close #6940 Signed-off-by: Fabian Wüthrich <me@fabwu.ch>
This commit is contained in:
parent
1db5a0a1ca
commit
ced00b9df9
1 changed files with 1 additions and 1 deletions
|
@ -594,7 +594,7 @@ void setShowLocationAlert(BOOL needShow) {
|
|||
{
|
||||
auto app = UIApplication.sharedApplication;
|
||||
auto delegate = static_cast<MapsAppDelegate *>(app.delegate);
|
||||
if (delegate.isDrapeEngineCreated && app.applicationState == UIApplicationStateActive)
|
||||
if (delegate.isDrapeEngineCreated)
|
||||
{
|
||||
auto & f = GetFramework();
|
||||
if (self.frameworkUpdateMode & MWMLocationFrameworkUpdateLocation)
|
||||
|
|
Loading…
Add table
Reference in a new issue