forked from organicmaps/organicmaps
[android] Wait a few seconds for accurate locations initially
Closes #2149 Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
parent
c452ffb785
commit
b2a59c5d65
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue