微信小程序3種位置API的使用方法詳解
獲取位置
獲取當(dāng)前的地理位置、速度。當(dāng)用戶離開小程序后,此接口無法調(diào)用;當(dāng)用戶點(diǎn)擊“顯示在聊天頂部”時(shí),此接口可繼續(xù)調(diào)用。


wx.getLocation(object)


<view class="container">
<button bindtap='getLocation'>獲取位置</button>
<view wx:if="{{latitude !=''}}">
<view>緯度:{{latitude}}</view>
<view>經(jīng)度:{{longitude}}</view>
<view>速度:{{speed}}</view>
<view>位置的精確度:{{accuracy}}</view>
<view>高度:{{altitude}}</view>
<view>垂直精度:{{accuracy}}</view>
<view>水平精度:{{accuracy}}</view>
</view>
</view>
//index.js
//獲取應(yīng)用實(shí)例
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)
打開地圖選擇位置。
需要用戶授權(quán) scope.userLocation




wx.chooseLocation(object)


<view class="container">
<button bindtap='getLocation'>打開地圖選擇位置</button>
<view wx:if="{{address !=''}}">
<view>位置名稱:{{name}}</view>
<view>詳細(xì)地址:{{address}}</view>
<view>緯度:{{latitude}}</view>
<view>經(jīng)度:{{longitude}}</view>
</view>
</view>
//index.js
//獲取應(yīng)用實(shí)例
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
})
}
})
}
})
使用微信內(nèi)置地圖查看位置
使用微信內(nèi)置地圖查看位置。


wx.openLocation(OBJECT)

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
js+html+css實(shí)現(xiàn)簡單電子時(shí)鐘
這篇文章主要為大家詳細(xì)介紹了js+html+css實(shí)現(xiàn)簡單電子時(shí)鐘,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-06-06
javascript跟隨滾動(dòng)效果插件代碼(javascript Follow Plugin)
這篇文章介紹了javascript跟隨滾動(dòng)效果插件代碼(javascript Follow Plugin),有需要的朋友可以參考一下2013-08-08
javascript客戶端遍歷控件與獲取父容器對(duì)象示例代碼
本篇文章主要是對(duì)javascript客戶端遍歷控件與獲取父容器對(duì)象示例代碼進(jìn)行了介紹,需要的朋友可以過來參考下,希望對(duì)大家有所幫助2014-01-01
谷歌瀏覽器 insertCell與appendChild的區(qū)別
table中增加單元格時(shí) 在谷歌瀏覽器中使用insertCell方法增加列時(shí),顯示結(jié)果的先后順序與程序執(zhí)行的先后順序相反2009-02-02

