在componentDidMount中,初始化mapCtx。
this.mapCtx = Taro.createMapContext(‘container‘) //container是地图显示模块id //获取当前位置 this.mapCtx.getCenterLocation({ success(res) { console.log(res.longitude) console.log(res.latitude) } }) //移动到定位到的位置 this.mapCtx.moveToLocation()