<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title>基於瀏覽器的HTML5查找地理位置</title> <!-- 百度API --> <script src="http://api.map.baidu.com/api?v=1.4" type="text/javascript"></script> <script> // void getCurrentPosition(onSuccess,onError,options); //獲取用戶當前位置 // int watchCurrentPosition(onSuccess,onError,options); //持續獲取當前用戶位置 // void clearWatch(watchId); //watchId 為watchCurrentPosition返回的值 //取消監控 //options = { // enableHighAccuracy, //boolean 是否要求高精度的地理信息 // timeout, //表示等待響應的最大時間,默認是0毫秒,表示無窮時間 // maximumAge /應用程序的緩存時間 //} function getLocation(){ var options={ enableHighAccuracy:true, maximumAge:1000 } if(navigator.geolocation){ //瀏覽器支持geolocation navigator.geolocation.getCurrentPosition(onSuccess,onError,options); }else{ //瀏覽器不支持geolocation } } //成功時 function onSuccess(position){ //返回用戶位置 //經度 var longitude =position.coords.longitude+0.008774687519; ; //緯度 var latitude = position.coords.latitude+0.00374531687912; //使用百度地圖API //創建地圖實例 var map =new BMap.Map("container"); //創建一個坐標 var point =new BMap.Point(longitude,latitude); //地圖初始化,設置中心點坐標和地圖級別 map.centerAndZoom(point,15); map.enableScrollWheelZoom(true); var marker = new BMap.Marker(point); // 創建標注 map.addOverlay(marker); // 將標注添加到地圖中 } //失敗時 function onError(error){ switch(error.code){ case 1: alert("位置服務被拒絕"); break; case 2: alert("暫時獲取不到位置信息"); break; case 3: alert("獲取信息超時"); break; case 4: alert("未知錯誤"); break; } } window.onload=getLocation; </script> </head> <body> <div id="container" style="width:600px;height:600px"></div> </body> </html>
