Home  >  Article  >  Web Front-end  >  Example sharing of WeChat applet to obtain the latitude and longitude coordinates of your location

Example sharing of WeChat applet to obtain the latitude and longitude coordinates of your location

小云云
小云云Original
2018-05-28 14:19:243015browse

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:&#39;&#39;,
  longitude:&#39;&#39;
 },
 onLoad: function () {
  var that=this;
  wx.getLocation({
   type: &#39;wgs84&#39;,
   success: function(res) {
    that.setData({
     latitude:res.latitude,
     longitude:res.longitude
    })
   }
  })
 }
})

Related recommendations:

php Tencent map longitude and latitude conversion to Baidu map longitude and latitude implementation ideas and example sharing

##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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn