获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
开发过程中遇到了和题主相同的问题,记录一下我所选择的解决方案: that.myMap.includePoints({ padding:[10], points: [{ latitude:latitude, longitude:longitude }] }), that.myMap.moveToLocation({ success: function(){ latitude:latitude; longitude:longitude } })
MapContext.moveToLocation(Object object)能否指定比例尺?业务需要在地图所有标志物和用户当前位置间切换,不同的比例尺时展示不同的标志物。其中,用户当前位置视图明确要求比例尺为14。如果直接操作地图组件的scale属性,会导致多次触发bindregionchange事件,使用体验较差。因此,MapContext.moveToLocation(Object object)中能增加定比例尺参数,将地图中心移置某点、展示某一级别的地图?
2021-10-21