1. 程式人生 > >asp程式碼微信使用者獲取座標位置及詳細地址省市縣區街道等資訊

asp程式碼微信使用者獲取座標位置及詳細地址省市縣區街道等資訊

//獲取定位
//$(".getLocation").on(“click”, function(){
wx.getLocation({
type: ‘gcj02‘, // 預設為wgs84的gps座標,如果要返回直接給openLocation用的火星座標,可傳入‘gcj02‘
success: function (res) {
var latitude = res.latitude; // 緯度,浮點數,範圍為90 ~ -90
var longitude = res.longitude; // 經度,浮點數,範圍為180 ~ -180。
$("#p_LatLng").html(longitude+‘,‘+latitude); //使用者的座標
var url=‘GetAddress.asp?lat=‘+latitude+‘&lng=‘+longitude;
$.ajax({
type:“get”,
cache:false,
url:url,
success:function(res)
{
$("#p_Address").html(res); //中文地址

}
});
},
cancel: function (res) {
alert(‘使用者拒絕授權獲取地理位置‘,‘‘);
}
});
//});