开发者

Phonegap Android and GPS satellite

开发者 https://www.devze.com 2023-04-11 19:26 出处:网络
It seems phonegap does not use GPS satellite instead geolocation from cellular network. I am not satisfied with the accuracy, always between 150-1000 meters. GPS activity logo is notdisplayed as well.

It seems phonegap does not use GPS satellite instead geolocation from cellular network. I am not satisfied with the accuracy, always between 150-1000 meters. GPS activity logo is not displayed as well.

Is there any way to force an android app to use GPS satellites even if other methods are available? Is there any way to override the default function to ac开发者_C百科tivate the GPS sat usage?

Thanks in advance


PhoneGap actually uses GPS satellite geolocation just as Android platform does. You should be receiving locations with a more precise accuracy than 150m if your phone's GPS is enabled. Whenever you call the geolocation.getCurrentPosition() or geolocation.watchPosition() methods, PhoneGap's GeoListener class asks for a GPS provider and a NETWORK provider, then it creates a listener for both providers, if they exist. This is the reason you are getting a wide range of accuracies.

So in case you want to force high accuracy locations, you could set it to true on the geolocationOptions parameter passed to the above methods. Check the API: geolocationOptions

navigator.geolocation.watchPosition(
    onSuccess, onError, 
    { maximumAge: 3000, timeout: 5000, enableHighAccuracy: true });

In case you want to have more control and a more accurate behaviour of location requests you can extend PhoneGap's API to do so.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号