美文网首页
83 百度地图定位

83 百度地图定位

作者: 滔滔逐浪 | 来源:发表于2021-09-14 09:29 被阅读0次

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>地图</title>
    <style type="text/css">
        html{height:100%}
        body{height:100%;margin:0px;padding:0px}
        #container{height:100%}
    </style>
    <script type="text/javascript" src="https://api.map.baidu.com/api?v=1.0&type=webgl&ak=您的ak"></script>

</head>

<body>
<div id="container"></div>

</body>
<script type="text/javascript">
    var map = new BMapGL.Map("container");
    // 创建地图实例
    var point = new BMapGL.Point(112.819549,28.347458);
    // 创建点坐标
    map.centerAndZoom(point, 15);
    // 初始化地图,设置中心点坐标和地图级别
</script>
</html>

相关文章

网友评论

      本文标题:83 百度地图定位

      本文链接:https://www.haomeiwen.com/subject/ouxcgltx.html