微信小程序实现简单定位功能

微信小程序实现简单定位功能,简单易读,获取经纬度信息

在pages下创建一个单页如local

local.js如下

var app = getApp()  
Page({ 
    data:{
       latitude:'',
       longitude:''
    },
  getLocation:function(e) {
    console.log(e)
    var that = this
    wx.getLocation({
      type: 'wgs84', // 默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标
      success: function(res){
        console.log(res)     
      that.setData({
              longitude:res.longitude,
              latitude:res.latitude        
      })
    }
 })
}
})

local.wxml如下



    经度:
    
    纬度:
      
    
    
    


在app.json中

{
  "pages":[
    "pages/local/local"
  ],
  "window":{
    "backgroundTextStyle":"light",
    "navigationBarBackgroundColor": "#fff",
    "navigationBarTitleText": "定位",
    "navigationBarTextStyle":"black"
  }
}


你可能感兴趣的:(微信小程序,微信小程序,定位,获取经纬度)