真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

微信小程序3種位置API的使用方法詳解

獲取位置

桓臺網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)建站自2013年起到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站。

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

微信小程序3種位置API的使用方法詳解

微信小程序3種位置API的使用方法詳解

wx.getLocation(object)

微信小程序3種位置API的使用方法詳解

微信小程序3種位置API的使用方法詳解


 
 
  緯度:{{latitude}}
  經(jīng)度:{{longitude}}
  速度:{{speed}}
  位置的精確度:{{accuracy}}
  高度:{{altitude}}
  垂直精度:{{accuracy}}
  水平精度:{{accuracy}}
 
//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

微信小程序3種位置API的使用方法詳解

微信小程序3種位置API的使用方法詳解

微信小程序3種位置API的使用方法詳解

微信小程序3種位置API的使用方法詳解

wx.chooseLocation(object)

微信小程序3種位置API的使用方法詳解

微信小程序3種位置API的使用方法詳解


 
 
  位置名稱:{{name}}
  詳細(xì)地址:{{address}}
  緯度:{{latitude}}
  經(jīng)度:{{longitude}}
 
//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)置地圖查看位置。

微信小程序3種位置API的使用方法詳解

微信小程序3種位置API的使用方法詳解

wx.openLocation(OBJECT)

微信小程序3種位置API的使用方法詳解

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


當(dāng)前標(biāo)題:微信小程序3種位置API的使用方法詳解
當(dāng)前地址:http://weahome.cn/article/gdeogp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部