網頁

2014年9月6日 星期六

navigator.geolocation not work in Android

navigator.geolocation not work in Android 4.1.2, soulution




  1. navigator.geolocation.getCurrentPosition(onGeoLocateSuccess,
  2. onGeoLocateError,
  3. {
  4. enableHighAccuracy : false,
  5. maximumAge : 0,
  6. timeout : 7000
  7. });
-->change to:
  1. navigator.geolocation.getCurrentPosition(onGeoLocateSuccess,
  2. onGeoLocateError,
  3. {
  4. enableHighAccuracy : true,
  5. maximumAge : 3000,
  6. timeout : 60000
  7. });
make sure enableHighAccuracy is enabled.

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。