官方提供了api可以进行操作,
将地图中心移置当前定位点,此时需设置地图组件 show-location 为true。'2.8.0' 起支持将地图中心移动到指定位置。
具体实现,这里模拟的一个地图上任意一点点击事件:
maptap(e){
const {latitude,longitude} = e.detail;
const mapCtx = wx.createMapContext("kwyymap",this);
mapCtx.moveToLocation({
latitude:latitude,
longitude:longitude,
success:() => {console.log('我移过去了')},
});
}
使用
parseFloat(latitude)
进行类型转化;