html5 地理定位
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>地理定位</title>
</head>
<body>
<p id="demo">點選按鈕獲取您當前座標(可能需要比較長的時間獲取):</p>
<button onclick="getLocation()">點此處</button>
<script>
var x=document.getElementById("demo");
function getLocation(){
if(navigator.geolocation){
navigator.geolocation.getCurrentPosition(showPosition,showError);
}else{
x.innerHTML="該瀏覽器不支援獲取地理位置";
}
}
function showPosition(position){
x.innerHTML="緯度:" + position.coords.latitude + "<br>經度:" + position.coords.longitude;
var img_url="http://maps.googleapis.com/maps/api/staticmap?center="
+latlon+"&zoom=14&size=400x300&sensor=false";
document.getElementById("mapholder").innerHTML=" <img src=' "+img_url+" '>";
}
function showError(error){
switch(error.code){
case error.PERMISSION_DENIED:
x.innerHTML="使用者拒絕對獲取地理位置的請求。"
break;
case error.POSITION_UNAVAILABLE:
x.innerHTML="位置資訊是不可用的。
break;
case error.TIMEOUT:
x.innerHTML="請求使用者地理位置超時。"
break;
case error.UNKNOWN_ERROR:
x.innerHTML="未知錯誤。"
break;
}
}
</script>
</body>
</html>