色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

html5獲取當前位置的代碼

錢琪琛2年前9瀏覽0評論

HTML5中可以使用Geolocation API獲取用戶的當前位置信息,下面是一個獲取當前位置的示例代碼:

if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(success, error);
} else {
alert("Geolocation is not supported by this browser.");
}
function success(position) {
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
var accuracy = position.coords.accuracy;
console.log("Latitude: " + latitude + " Longitude: " + longitude + " Accuracy: " + accuracy + " meters");
}
function error() {
console.log("Unable to retrieve your location.");
}

以上代碼首先判斷瀏覽器是否支持Geolocation API,如果支持則調用getCurrentPosition方法獲取位置信息,如果不支持則彈出提示框。當成功獲取位置信息時,調用success函數并將位置信息作為參數傳遞進去,然后在控制臺輸出經度、緯度和精度三個信息。如果獲取位置信息失敗,則調用error函數。