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.

Ok so I am building an app that uses the Geolocation API. I cant seem to get a very simple piece of code to work on Firefox 10. Here is the code:

    window.onload = function() {
        if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(function(position) {
                alert('it works');
            }, function(error) {
                alert('Error occurred. Error code: ' + error.code);         
            });
        }else{
            alert('no geolocation support');
        }
    };

So ,for example, in chrome, after running the page I will be asked if I want to share my location, and after clicking yes it will alert me with "it works". Now in Firefox 10 it will ask me to share my location and after clicking share it does nothing... I've been trying to get the callback to run any type of code but no luck. Is this a bug with Firefox or am I doing something wrong? I have an example of the code here for testing: http://dev-hub.com/geolocation.html.

Edit--- My OS is windows 7 64bit

share|improve this question
on what hardware are you running firefox? – tnt Feb 9 '12 at 17:31
On windows 7 64 – Zaptree Feb 9 '12 at 17:45
The Geolocation feature requires a mobile device that supports geolocation. You can find out more here. – tnt Feb 9 '12 at 17:53
So why do the other browsers correctly get my coords for where I live? And if that was the case why doesn't Firefox run the error callback with an error code 2 (position unavailable) or some other error like it should in such a case? – Zaptree Feb 9 '12 at 18:30
It uses your IP address or upstream IP or a wireless network – tnt Feb 9 '12 at 18:50
show 4 more comments

1 Answer

up vote 7 down vote accepted

All right I found that the problem is indeed Firefox and that it does not work reliably or equally on all platforms. Looking at http://dev.w3.org/geo/api/spec-source.html I found the following option to add:

    window.onload = function() {
        if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(function(position) {
                alert('it works');
            }, function(error) {
                alert('Error occurred. Error code: ' + error.code);         
            },{timeout:50000});
        }else{
            alert('no geolocation support');
        }
    };

As you can see here the timeout:50000 has been added which means that if for some reason the browser takes more then 50000ms (5secs) then throw a timeout error (that's error code 3). So now whenever Firefox is not working it at least runs the error callback and i get an alert message of "Error occurred. Error code: 3".

Apparently the default value of timeout is infinite so it never times out... Chrome is 100% reliable but Firefox is about 10% reliable on my machine which is very disappointing. On my other computer which is running windows XP and is on the same network, Firefox seems to be 100% reliable.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.