获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- map 搜索定位聚合问题
- 当前 Bug 的表现(可附上截图) 在小程序中对地图进行周边的搜索,比如酒店:要求搜索标记出所有的酒店,如果距离近得进行聚合
2018-09-05 - map实时定位问题
每次地图的定位,当我在屏幕上移动地图的时候,由于实时执行UpdateLocation()方法,导致页面一直会返回到当前定位的地方;此问题如何解决呢; updateLocation() 方法: updateLocation: function(){ var that=this; wx.getLocation({ type: 'gcj02', success: function (res) { console.log(res) latitude = res.latitude longitude = res.longitude that.setData({ latitude: latitude, longitude: longitude, }) wx.setStorageSync('latitude', latitude); wx.setStorageSync('longitude', longitude); } }); },
2018-08-31