本篇文章給大家帶來的內容是關於h5頁面如何調用百度地圖擷取當前位置(代碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。
在項目中越來越多的用到了手機的GRS定位功能,使用百度地圖API擷取當前位置並在地圖上標註出來首先應該在官網上註冊key
點擊擷取密鑰,註冊擷取key。
完整代碼如下:
<!DOCTYPE html><html><head><meta charset="UTF-8"><script type="text/javascript" src=" </script><title>百度地圖的定位</title></head><body> <p id="allmap" style="width: 100%;height: 500px;"></p> <script type="text/javascript"> // 百度地圖API功能 var map = new BMap.Map("allmap"); var point = new BMap.Point(108.95,34.27); map.centerAndZoom(point,12); var geolocation = new BMap.Geolocation(); geolocation.getCurrentPosition(function(r){console.log(r.point) if(this.getStatus() == BMAP_STATUS_SUCCESS){ var mk = new BMap.Marker(r.point); map.addOverlay(mk);//標出所在地 map.panTo(r.point);//地圖中心移動 //alert('您的位置:'+r.point.lng+','+r.point.lat); var point = new BMap.Point(r.point.lng,r.point.lat);//用所定位的經緯度尋找所在地省市街道等資訊 var gc = new BMap.Geocoder(); gc.getLocation(point, function(rs){ var addComp = rs.addressComponents; console.log(rs.address);//地址資訊 alert(rs.address);//彈出所在地址 }); }else { alert('failed'+this.getStatus()); } },{enableHighAccuracy: true})</script></body></html>
運行結果是:
(註:用瀏覽器定位是不準確的,建議用手機進行測試!)