Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My program has a method that calls getCurrentPosition both with error and success callbacks. On Android it works perfectly. On iOS it doesn't call any of the callbacks - neither the error nor the success.

Any ideas why does it happen would be welcome.

P.S. I'm using Phonegap 1.4, upgrading have proved problematic some time ago, but if it might help, I can invest the time to upgrade phonegap to latest version.

Thanks.

EDIT: Here is some code, altough not sure how will it help:

getLocation: function(successCallback, errorCallback){
    navigator.geolocation.getCurrentPosition(
            function(position){
                var itmPosition = JSITM.gps2itm(new JSITM.LatLng(position.coords.latitude, position.coords.longitude)); 
                geolocationHandler.reverseGeocode(itmPosition ,successCallback, errorCallback);
            },
            function(error){
                alert("error getting position: " + error.message);
                errorCallback("some error message");
            },
            { maximumAge: 10000, timeout: 30000, enableHighAccuracy: true });
}

Neither of the callbacks is invoked.

share|improve this question
add some code.. then only easy to answer – Bharathi D Jun 6 '12 at 12:33
Code added. Not sure how would it help. – Svarog Jun 6 '12 at 12:42
check all delimiter.. – Bharathi D Jun 6 '12 at 13:19
It works in android, and I don't see any errors thrown neither in iOS console, nor when trying to run the same code in Chrome. – Svarog Jun 6 '12 at 13:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.