微信公开课
如何看待微信公开课小程序热门讨论「小程序怎么能实现用户定位功能」
摘要:小程序怎么能实现用户定位功能
展开:小程序中实现:用户在小程序中定位到他当前所在的具体位置,怎么实现有实现的大侠,请提供解决方案,可能其它也有需要的人,一起来讨论吧。我的代码在下面,wx.getLocation,不能实现需求。//location.jsvarappgetApp()Page({data:{point:{latitude:28.454863,longitude:117.943433},markers:[]},onLoad:function(){console.log(地图定位接口getLocation还不能正常获取用户位置!)varthatthis;wx.getLocation({type:wgs84,success:function(res){varlatituderes.latitudevarlongituderes.longitudevarspeedres.speedvaraccuracyres.accuracy;varpoint{latitude:latitude,longitude:longitude}varmarkers[{latitude:latitude,longitude:longitude,name:地图定位,desc:我现在的位置}];that.setData(markers);that.setData(point);wx.openLocation({latitude:res.latitude,//纬度,范围为90~90,负数表示南纬longitude:res.longitude,//经度,范围为180~180,负数表示西经scale:28,//缩放比例})}})}})了解更多