地图拖动触发bindregionchange事件时,怎么获取拖动后的经纬度
getCenterLocation: function (e) { let that = this if (e.type == 'end' && e.causedBy == 'drag') { that.mapCtx.getCenterLocation({ success(res) { that.setData({ lat: res.latitude, lng: res.longitude }) //that.moveGetUsers() } }) } },