更新获取位置

This commit is contained in:
wpf 2023-09-20 23:11:46 +08:00
parent 902224ebf1
commit d70f6c6f8a
3 changed files with 36 additions and 9 deletions

14
App.vue
View File

@ -91,6 +91,20 @@
initEvent();
// #endif
uni.getLocation({
// type: 'gcj02',
// geocode: true,
// isHighAccuracy: true,
// altitude: true,
accuracy: 'best',
success: (res)=> {
console.log(res);
},
fail(e) {
console.log(e);
}
});
let that = this;
// #ifdef MP
if (HTTP_REQUEST_URL == '') {

View File

@ -17,9 +17,20 @@ export const initEvent = () => {
console.log('获取定位');
let res = await uniMPgetLocation();
console.log(res);
// mp.sendUniMPEvent(ret.fromAppid, 'getLocation', res, (e) => {
// console.log('发送成功', e);
// })
// plus.geolocation.getCurrentPosition(function(position) {
// console.log('经度:' + position.coords.longitude);
// console.log('纬度:' + position.coords.latitude);
// // that.markers[1].latitude = position.coords.longitude;
// // that.markers[1].longitude = position.coords.longitude;
// mp.sendUniMPEvent(
// ret.fromAppid,
// 'getLocation', {...position.coords},
// (ret) => {
// console.log('Host sendEvent: ' + JSON.stringify(ret));
// });
// }, function(error) {
// console.error('获取位置失败:', error.message);
// }, {provider:'gps'});
mp.sendUniMPEvent(
ret.fromAppid,
'getLocation', {...res},

View File

@ -6,15 +6,17 @@ export const test = ()=>{
export const uniMPgetLocation = ()=>{
return new Promise((resolve, reject)=>{
uni.getLocation({
type: 'gcj02',
geocode: true,
isHighAccuracy: true,
// type: 'gcj02',
// geocode: true,
// isHighAccuracy: true,
// altitude: true,
accuracy: 'best',
success: (res)=> {
resolve(res)
},
fail(e) {
reject(e)
}
fail(e) {
reject(e)
}
});
})
}