Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Invalid
-
1.0.0, 1.1.0, 1.2.0, 1.6.0, 1.7.0
-
None
-
iPod Touch, iPhone 4
Description
navigator.geolocation.getCurrentPosition does not work on iOS 4.3 and below, but works perfectly fine on iOS 5 and Android. Location service and WIFI were enabled on device but returned location update failed.
function onSuccess()
{ console.log('location acquired'); }function onFailure()
{ console.log('location not found'); }navigator.geolocation.getCurrentPosition(onSuccess, onFailure,
{ enableHighAccuracy: true });