W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
解釋: 打開地圖選擇位置。需要用戶授權 scope.userLocation 。使用該 API 需通過獲取用戶授權設置申請授權后方可對用戶發(fā)起授權申請,可在 swan.authorize 中查看相關錯誤碼信息。
Object object
屬性名 | 類型 | 必填 | 默認值 | 說明 |
---|---|---|---|---|
success | Function | 否 | 接口調用成功的回調函數 | |
fail | Function | 否 | 接口調用失敗的回調函數 | |
complete | Function | 否 | 接口調用結束的回調函數(調用成功、失敗都會執(zhí)行) |
參數 | 參數類型 | 說明 |
---|---|---|
name | String | 位置名稱 |
address | String | 詳細地址 |
latitude | Number | 緯度,浮點數,范圍為 -90~90 ,負數表示南緯。使用 gcj02 國測局坐標系,查詢指定地點的經緯度。 |
longitude | Number | 經度,浮點數,范圍為 -180~180 ,負數表示西經。使用 gcj02 國測局坐標系,查詢指定地點的經緯度。 |
<view class="wrap">
<view class="card-area">
<view class="list-area border-bottom">
<view class="list-item-key-4">名稱</view>
<view class="list-item-value">{{name}}</view>
</view>
<view class="list-area border-bottom">
<view class="list-item-key-4">地址</view>
<view class="list-item-value">{{address}}</view>
</view>
<view class="list-area border-bottom">
<view class="list-item-key-4">坐標</view>
<view class="list-item-value">{{longitude}} {{latitude}}</view>
</view>
<button bindtap="chooseLocation" type="primary" hover-stop-propagation="true">點擊選擇位置</button>
</view>
</view>
Page({
data: {
longitude: '',
latitude: ''
},
chooseLocation() {
swan.authorize({
scope: 'scope.userLocation',
success: res => {
console.log('authorize', res);
},
fail: err => {
swan.openSetting({});
}
});
swan.chooseLocation({
success: res => {
console.log('chooseLocation success', res);
let longitude = 'E:' + this.formatLocation(res.longitude) + '′';
let latitude = 'N:' + this.formatLocation(res.latitude) + '′';
console.log('longitude', longitude);
console.log('latitude', latitude);
this.setData({
name: res.name,
address: res.address,
longitude: longitude,
latitude: latitude
});
},
fail: err => {
console.log('錯誤碼:' + err.errCode);
console.log('錯誤信息:' + err.errMsg);
}
});
},
formatLocation(data) {
return data.toFixed(2).replace('.', '°');
}
});
Q:如何查詢指定地點的經緯度?
A:當前我們提供以下方式可以查詢到您指定地點的經緯度
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯系方式:
更多建議: