https://lbsyun.baidu.com/apiconsole/custommap
这个网址里面点击 特色服务平台 - 个性化地图 - 地图模板 - 选择地图样式 - 点击发布样式 - 复制id到代码里面
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script type="text/javascript"
src="https://api.map.baidu.com/api?v=1.0&type=webgl&ak=cXG18I5SNt2EZNvG7CVyE4jjTr8swlo4"
></script>
<style>
html{
height: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body{
height: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#map{
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.anchorBL, .BMap_cpyCtrl{
display: none;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
console.log(window.BMapGL);
var map = new BMapGL.Map('map') // 初始化地图
var point = new BMapGL.Point(116.404,39.915) // 设置地图坐标
map.centerAndZoom(point, 10) // 中心的 地图的显示级别
map.enableScrollWheelZoom(true) // 通过滚轮对地图进行放大和缩小
// 自定义地图样式
// 还可以通过styleJsion的方式去改变样式
map.setMapStyleV2({
styleId:'06649c73ab8ae3adffe6ea88ed400b23'
})
</script>
</body>
</html>