这是我的代码:警报显示“为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);