Skip to content Skip to sidebar Skip to footer

How To Increase The Accuracy Of My Start Position?

Can I increase the accuracy of my starting position? My marker always catch the near position point of my starting point and not the staring point. Following is my coding: @Overrid

Solution 1:

The exactly match the "blue dot" position, use

map.setOnMyLocationChangeListener(new GoogleMap.OnMyLocationChangeListener() {
    ...
});

Using LocationManager will never yield the same result you get from OnMyLocationChangeListener, because this it is using a different provider: "gps" or "network" vs. "fused".

Post a Comment for "How To Increase The Accuracy Of My Start Position?"