关于微信小程序地图之MapContext.moveToLocation

本来想看看原生api是否有移动到当前定位点,看到有就试着调用看看.发现无效.无奈还是沿用之前的方法

wxml:

  


js:
//当前定位返回 
	tapM() {
		var that = this;
		wx.getLocation({
			type: 'gcj02',
			isHighAccuracy: true,
			success(res) {
				const latitude = res.latitude
				const longitude = res.longitude
				//这里赋的值 都是给map组件的
				that.setData({
					scale: 16,
					latitude: latitude,
					longitude: longitude,
					roadFlag: true,
				})
			}
		})
	},

你可能感兴趣的:(微信小程序)