欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

百度地图相关配置

程序员文章站 2022-06-10 18:31:25
...
//初始化百度地图
        var mapContainer = new BMap.Map(mapContainer,{mapType:BMAP_HYBRID_MAP});//创建地图实例,设置地图显示类型为混合模式
        var point = new BMap.Point(lng,lat);//设置中心点
        mapContainer.centerAndZoom(point, 17);//初始化地图,设置中心点和显示级别
        mapContainer.enableScrollWheelZoom(true); //启用滚轮放大缩小
        //向地图中添加缩放控件
        var ctrlNav = new window.BMap.NavigationControl({
            anchor: BMAP_ANCHOR_BOTTOM_RIGHT,//缩放控件显示在右下角
            type: BMAP_NAVIGATION_CONTROL_LARGE
        });
        mapContainer.addControl(ctrlNav);//把缩放控件添加到地图中
        //添加地图类型控件(地图和混合模式切换)
        mapContainer.addControl(new BMap.MapTypeControl({
            mapTypes:[
                BMAP_NORMAL_MAP,
                BMAP_HYBRID_MAP
            ]}));