moveToLocation 到指定位置,为什么也需要获取定位权限?
https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.moveToLocation.html 期望:moveToLocation 当传了指定的 latitude 和 longitude 时,希望不要求用户授予位置权限 问题::moveToLocation 到具体的经纬度,但是也却要求获取定位权限。代码如下: const mapCtx = wx.createMapContext("mapId",this);
mapCtx.moveToLocation({
// 这里是具体的经纬度,即不是定位到当前位置,但是也要求获取定位权限
latitude:30.6223776,
longitude:104.0465145,
success:() => {console.log('我移过去了')},
});