为什么我无法从地理位置中拉出纬度和经度

时间:2017-01-31 23:05:23

标签: javascript geolocation

这是我的代码:警报显示“为crd.Latitude和crd.Longitude Undefinted ...还有另一件事。我在VPN上,我的电脑连接到远程位置......我不知道我知道这是否意味着什么。

 $(document).ready(function () {
        // Geolocation
        var options = {
            enableHighAccuracy: true,
            timeout: 5000,
            maximumAge: 0
        };

        function success(pos) {
            var crd = pos.coords;
            alert("Latitude : " + crd.Latitude + "Longitude : " + crd.Longitude);

    };

    function error(err) {
        alert("Error code: " + err.code);
    };

    navigator.geolocation.getCurrentPosition(success, error, options);

0 个答案:

没有答案