You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello @txlwelling. In order to facilitate location and troubleshooting, we need you to provide a realistic GitHub repository.
您好 @txlwelling, 为了方便定位和排查问题,我们需要您提供一个重现实例,请提供一个尽可能精简的 GitHub 仓库地址。
Since the issue was labeled with Need Reproduction, but no response in 7 days. This issue will be close. If you have any questions, you can comment and reply.
由于该 issue 被标记为需要可复现步骤,却 7 天未收到回应。现关闭 issue,若有任何问题,可评论回复。
主应用和子应用都是,
<script type="text/javascript" src="https://api.map.baidu.com/api?v=3.0&type=world&ak=xxx"></script>子应用 index.html引入百度地图sdk
const initMap = ()=> {
map.value = new BMap.Map("map"); // 创建Map实例
let point = new BMap.Point(116.404, 39.915); // 创建点坐标
mapSearchService.value = new BMap.LocalSearch(map.value, {
renderOptions: { map: map.value }
});
// map.enableScrollWheelZoom(true)
map.value.centerAndZoom(point, 15); // 初始化地图,设置中心点坐标和地图级别
// 添加缩放控件
map.value.addControl(new BMap.NavigationControl());
}
The text was updated successfully, but these errors were encountered: