getCurrentPosition总是在我的计算机上回调错误

时间:2014-02-09 20:59:07

标签: javascript html5 geolocation

所以,我有一个带有地理系统的网站。

这个系统适合我的朋友,但是当我在我的电脑上测试时,我总是有错误回调。

这是我的代码:

if (navigator.geolocation) {
        var options = {
            enableHighAccuracy: true,
            timeout: 30000,
            maximumAge: 100
        };
        navigator.geolocation.getCurrentPosition(localizeMe, errorLocalize, options);
    } else {
        bootbox.alert("Impossible de trouver votre position.", function(response) {
            if(response)
                $(this).delay(200).fadeIn().delay(4000).fadeOut();
        });
    }

因此,对于我的朋友,回调localizeMe始终是调用,因此脚本可以正常工作。

但对我来说,我总是有回调errorLocalize ..

我测试了我的Ipad上的FF,Chrome和Safari,但错误,错误和错误......我在Windows 7 64位上。

你有什么想法吗?

0 个答案:

没有答案