Phonegap GPS without internet

后端 未结 1 1106
梦毁少年i
梦毁少年i 2020-12-17 16:33

I m trying to make an android app which count the distance traveled from log,lan values with phonegap.But phonegap GPS work only when internet or wifi in ON condition.How

相关标签:
1条回答
  • 2020-12-17 17:04

    See the PhoneGap API Docs for Geolocation under the geoLocationOptions:

    Android Quirks

    The Android 2.x simulators will not return a geolocation result unless the enableHighAccuracy option is set to true.

    { enableHighAccuracy: true }
    

    Enabling that option will allow the Android device to get the location even with the WIFI option disabled.

    0 讨论(0)
提交回复
热议问题