Search code examples
androidgoogle-mapsionic-frameworkgeolocation

Geo location is not accurate in my app


Geo location is not accurate in my ionic app. It shows near by location. But not the exact point. I checked 'locate' (cross-hair) in google map app. But its same as my app. Not the exact point. But in google map, when i tried get directions from 'Your location' to a certain place, it started exactly from my point. How can get the accurate location like in google map 'Get direction > Your location'?


Solution

  • i just replaced

    navigator.geolocation.getCurrentPosition(onSuccess,onError,options);

    with

    navigator.geolocation.watchPosition(onSuccess,onError,options);