收藏
回答

获取当前地图中心的经纬度陷入无限运行状态

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug getCenterLocation 客户端 6.7.2 2.2.4

// 地图视野发生变化时

bindRegion: function(e){

    if (e.type == "end"){

        this.mapCtx.getCenterLocation({

            success: res => {

                console.log(res);

                this.setData({

                latitude: res.latitude,

                longitude: res.longitude,

                });

            },

            fail: res => {

                console.log(res);

            }

        });

    }

},

地图视野发生变化时,获取当前中心的坐标就会一直执行getCenterLocation,我只拖动了一下,但是反复执行了无数次


回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容