Incorrect Fused Location API location LAtitiude Longitude.Is there any API to provide accurate location?
Asked
Active
Viewed 137 times
-1
-
1https://stackoverflow.com/questions/28759454/enabling-location-mode-high-accuracy-or-battery-saving-programmatically-withou try this – Tara Dec 04 '17 at 07:09
-
You aren't going to get more accurate than about 10m. The hardware in most phones just doesn't support it. – Gabe Sechan Dec 04 '17 at 07:28
2 Answers
0
If I understand right you want to snap to the road or use a Map Matching algorithm. For that task you can use e.g.

Peppermint Paddy
- 1,269
- 9
- 14
-1
Use this and you will get precision upto 14+ decimal places.
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 5000, 10, new MyLocationListener());

Suraj Gaur
- 21
- 2