參考教程:http://www.w3school.com.cn/html5/html_5_geolocation.asphtml
說明:設備必須有GPS定位功能才能定位的html5
HTML5 Geolocation API 用於得到用戶的地理位置。git
<!DOCTYPE html>
<html>
<body>
<p id="demo">點擊這個按鈕,得到您的座標:</p>
<button onclick="getLocation()">試一下</button>
<script>
var x=document.getElementById("demo");
function getLocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition);
}
else{x.innerHTML="Geolocation is not supported by this browser.";}
}
function showPosition(position)
{
x.innerHTML="Latitude: " + position.coords.latitude +
"<br />Longitude: " + position.coords.longitude;
}
</script>
</body>
</html>說明:html5的定位還比較準,我在Android與iphone上都有測試過,另外這種定位方式也比較簡單