I am using getCurrentPositionAsync()
form expo-location
to get user current location.
Requests for one-time delivery of the user’s current location. Depending on given accuracy option it may take some time to resolve, especially when you’re inside a building.
As per above info from expo documentation, getCurrentPositionAsync()
returns the current location of the user. But I have observed in my React-Native
app that getCurrentPositionAsync()
returns some other locations when I request for current location.
Hence, I would like to know that, Are there any chances that getCurrentPositionAsync()
can return cached location as well?