uni.getLocation
獲取當前的地理位置、速度。 在微信小程序中,當用戶離開應用後,此接口無法調用;當用戶點擊“顯示在聊天頂部”時,此接口可繼續調用
uni.getLocation({
type: 'wgs84 ',
success: function (res) {
console.log('經度:' + res.longitude);
console.log('緯度:' + res.latitude);
}
});
/*
type {string} 默認值'wgs84'
altitude {Boolean} 返回高度信息(比較雞肋)
success {Function} 成功回調
geocode {Boolean} 返回省市信息(僅APP中有效)
fail {Function} 失敗回調
complete {Function} 返回結果回調 成功/失敗都會觸發
*/
APP端也可以使用HTML5+模塊Geolocation
plus.geolocation.getCurrentPosition(function(p){
console.log(p);
}, function(e){
alert('Geolocation error: ' + e.message);
});
标簽:function,Function,console,log,res,app,地址,uni
來源: https://www.cnblogs.com/smileZAZ/p/14242520.html
有話要說...