我要去幼兒園深造了
2019-04-26 09:08:22
$(function(){ $("#load_geolocation").click(function(ev){ $(ev.currentTarget).text("正在獲取位置......"); //創建百度地圖控件 var?geolocation?=?new?BMap.Geolocation(); geolocation.getCurrentPosition(function(r){ if(this.getStatus()?==?BMAP_STATUS_SUCCESS){ //以指定的經度與緯度創建一個坐標點 var?pt?=?new?BMap.Point(r.point.lng,r.point.lat); //創建一個地理位置解析器 var?geoc?=?new?BMap.Geocoder(); geoc.getLocation(pt,?function(rs){//解析格式:城市,區縣,街道 var?addComp?=?rs.addressComponents; console.log(addComp.city?+?",?"?+?addComp.district?+?",?"?+?addComp.street); });???? } else?{ $(ev.currentTarget).text('定位失敗'); }???????? },{enableHighAccuracy:?true})//指示瀏覽器獲取高精度的位置,默認false }); });
1 回答

添加回答
舉報
0/150
提交
取消