JS代码12345678910111213141516171819202122232425262728293031323334353637383940//indexjs//获取应用实例varapp=getApp()Page({data:{motto:'示例小程序-获取当前地理位、速度',userInfo:{},hasLocation:false,location:{}},//事件处理函数bindViewTap:function(){wxnavigateTo({url:'/logs/logs'})},onLoad:function(){consolelog('onLoad')varthat=this//调用应用实例的方法获取全局数据appgetUserInfo(function(userInfo){//更新数据thatsetData({userInfo:userInfo})}),wxgetLocation({success:function(res){consolelog(res)thatsetData({hasLocation:true,location:{longitude:reslongitude,latitude:reslatitude}})}})}})indexwxml123456789101112{{userInfonickName}}{{motto}}\n-->经度:{{locationlongitude}}\n纬度:{{locationlatitude}}运行效果
以上就是关于微信小程序获取到位置坐标后,怎么获取具体地理位置信息全部的内容,包括:微信小程序获取到位置坐标后,怎么获取具体地理位置信息、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)