您好,登錄后才能下訂單哦!
獲取位置
獲取當前的地理位置、速度。當用戶離開小程序后,此接口無法調用;當用戶點擊“顯示在聊天頂部”時,此接口可繼續調用。
wx.getLocation(object)
<view class="container"> <button bindtap='getLocation'>獲取位置</button> <view wx:if="{{latitude !=''}}"> <view>緯度:{{latitude}}</view> <view>經度:{{longitude}}</view> <view>速度:{{speed}}</view> <view>位置的精確度:{{accuracy}}</view> <view>高度:{{altitude}}</view> <view>垂直精度:{{accuracy}}</view> <view>水平精度:{{accuracy}}</view> </view> </view>
//index.js //獲取應用實例 const app = getApp() Page({ data: { latitude: '', longitude: '', speed: '', accuracy: '', altitude:'', verticalAccuracy: '', horizontalAccuracy:'' }, onLoad: function () { }, getLocation:function(){ var _this=this; wx.getLocation({ type: 'wgs84', success: function (res) { var latitude = res.latitude var longitude = res.longitude var speed = res.speed var accuracy = res.accuracy var altitude = res.altitude var verticalAccuracy = res.verticalAccuracy var horizontalAccuracy = res.horizontalAccuracy _this.setData({ latitude: latitude, longitude: longitude, speed: speed, accuracy: accuracy, altitude: altitude, verticalAccuracy: verticalAccuracy, horizontalAccuracy: horizontalAccuracy }) } }) } })
打開地圖選擇位置
wx.chooseLocation(OBJECT)
打開地圖選擇位置。
需要用戶授權 scope.userLocation
wx.chooseLocation(object)
<view class="container"> <button bindtap='getLocation'>打開地圖選擇位置</button> <view wx:if="{{address !=''}}"> <view>位置名稱:{{name}}</view> <view>詳細地址:{{address}}</view> <view>緯度:{{latitude}}</view> <view>經度:{{longitude}}</view> </view> </view>
//index.js //獲取應用實例 const app = getApp() Page({ data: { name: '', address: '', latitude: '', longitude: '' }, onLoad: function () { }, getLocation:function(){ var _this=this; wx.chooseLocation({ success: function (res) { var name = res.name var address = res.address var latitude = res.latitude var longitude = res.longitude _this.setData({ name: name, address: address, latitude: latitude, longitude: longitude }) } }) } })
使用微信內置地圖查看位置
使用微信內置地圖查看位置。
wx.openLocation(OBJECT)
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。