html接入百度地图

1.申请key

key申请地址:https://lbsyun.baidu.com/apiconsole/key#/home

注意:白名单设置*则所有可访问,正式发布保证安全需修改为域名

官方文档

https://lbsyun.baidu.com/index.php?title=jspopularGL

2.html接入示例

html 复制代码
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
    <title>百度地图demo</title>

    <style type="text/css">
        html {
            height: 100%
        }

        body {
            height: 100%;
            margin: 0px;
            padding: 0px
        }

        #container {
            height: 100%
        }
    </style>
</head>
<body>
<div id="container"></div>
<script type="text/javascript"
        src="https://api.map.baidu.com/api?v=1.0&&type=webgl&ak=YOUR_KEY"></script>
<script type="text/javascript">
    // 创建地图实例
    var map = new BMapGL.Map("container");
    // 设置中心点及缩放级别
    var point = new BMapGL.Point(104.70049, 29.422945);
    map.centerAndZoom(point, 18);
    // 启用鼠标滚轮缩放功能
    map.enableScrollWheelZoom(true);
    // 添加标注
    var marker = new BMapGL.Marker(point);
    // 点标记添加点击事件
    var infoWindow = new BMapGL.InfoWindow('世界无花果博览园', {width: 10, height: 60});
    marker.addEventListener('click', function () {
        map.openInfoWindow(infoWindow, point);
    });
    map.addOverlay(marker);
</script>
</body>
</html>
相关推荐
程序菜鸟营2 分钟前
nvm安装详细教程(安装nvm、node、npm、cnpm、yarn及环境变量配置)
前端·npm·node.js
bsr198313 分钟前
前端路由的hash模式和history模式
前端·history·hash·路由模式
杨过姑父40 分钟前
ES6 简单练习笔记--变量申明
前端·笔记·es6
Sunny_lxm1 小时前
<keep-alive> <component ></component> </keep-alive>缓存的组件实现组件,实现组件切换时每次都执行指定方法
前端·缓存·component·active
wanfeng_091 小时前
视频m3u8形式播放 -- python and html
python·html·video·hls·m3u8
咔咔库奇2 小时前
【TypeScript】命名空间、模块、声明文件
前端·javascript·typescript
兩尛2 小时前
订单状态定时处理、来单提醒和客户催单(day10)
java·前端·数据库
又迷茫了2 小时前
vue + element-ui 组件样式缺失导致没有效果
前端·javascript·vue.js
哇哦Q3 小时前
原生HTML集合
前端·javascript·html
SoWhat~3 小时前
随遇随记篇
前端·javascript