This article mainly introduces the function of WeChat applet to obtain the longitude and latitude coordinates of your location, and involves the related operation skills of WeChat applet map function to obtain longitude and latitude information. Friends who need it can refer to it. I hope it can help everyone.
1. Effect display
2. Key code
index.wxml layout file code
<view>纬度:{{latitude}}</view> <view>经度:{{longitude}}</view>
index. js logic file code
Page({ data: { latitude:'', longitude:'' }, onLoad: function () { var that=this; wx.getLocation({ type: 'wgs84', success: function(res) { that.setData({ latitude:res.latitude, longitude:res.longitude }) } }) } })
Related recommendations:
##js Introduction to the method of automatically filling longitude and latitude into the text box
Detailed explanation of the graphic and text code for converting longitude and latitude into addresses using JavaScript
The above is the detailed content of Example sharing of WeChat applet to obtain the latitude and longitude coordinates of your location. For more information, please follow other related articles on the PHP Chinese website!