[android] Wait a few seconds for accurate locations initially

Closes #2149

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2022-02-19 15:35:58 +03:00 committed by Alexander Borsuk
parent c452ffb785
commit b2a59c5d65

View file

@ -75,6 +75,9 @@ class GoogleFusedLocationProvider extends BaseLocationProvider
final LocationRequest locationRequest = LocationRequest.create();
locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
locationRequest.setInterval(interval);
// Wait a few seconds for accurate locations initially, when accurate locations could not be computed on the device immediately.
// https://github.com/organicmaps/organicmaps/issues/2149
locationRequest.setWaitForAccurateLocation(true);
LOGGER.d(TAG, "Request Google fused provider to provide locations at this interval = "
+ interval + " ms");
locationRequest.setFastestInterval(interval / 2);