如何使用 HTML5 地理位置纬度/经度 API?
HTML5 地理位置 API 让你可以与自己最喜爱的网站分享你的位置。一个 JavaScript 可以捕获你的纬度和经度,并可以发送到后端 Web 服务器并进行诸如查找本地商家或在地图上显示你的位置之类的奇妙位置感知操作。
地理位置 API 适用于全球导航器对象的一个新属性即地理位置对象。
示例
你可以尝试运行以下代码来使用地理位置 API 查找当前位置,包括纬度和经度坐标
<!DOCTYPE HTML> <html> <head> <script type="text/javascript"> function showLocation(position) { var latitude = position.coords.latitude; var longitude = position.coords.longitude; alert("Latitude : " + latitude + " Longitude: " + longitude); } function errorHandler(err) { if(err.code == 1) { alert("Error: Access is denied!"); } else if( err.code == 2) { alert("Error: Position is unavailable!"); } } function getLocation(){ if(navigator.geolocation){ // timeout at 60000 milliseconds (60 seconds) var options = {timeout:60000}; navigator.geolocation.getCurrentPosition (showLocation, errorHandler, options); } else{ alert("Sorry, browser does not support geolocation!"); } } </script> </head> <body> <form> <input type="button" onclick="getLocation();" value="Get Location"/> </form> </body> </html>
广告