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如下
<view class="page-body"><view class="page-body-form">
<text class="page-body-form-key">经度:</text>
<input class="page-body-form-value" type="text"
value="{{longitude}}" name="longitude"></input>
<text class="page-body-form-key">纬度:</text>
<input class="page-body-form-value" type="text"
value="{{latitude}}" name="latitude"></input>
<view class="page-body-buttons">
<button class="page-body-button" type="primary"
bindtap="getLocation">获取位置</button>
</view>
</view>
</view>
app.json如下
{"pages":[
"pages/local/local"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "定位",
"navigationBarTextStyle":"black"
}
}
微信小程序支持地理位置定位,可以通过获取用户所在地理位置,来实现小程序相关功能。你可以使用微信小森蚂程序API(wx.getLocation)来获取用户的地理位置,然后再根据获取的经纬度,历睁通过百度地图提供的api调取服务,来获取用户具此烂埋体地址信息。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)