首页 > Web开发 > 详细

html: 百度地图初始化

时间:2020-07-01 00:26:46      阅读:75      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>百度地图预研</title>
    <link rel="stylesheet" type="text/css" href="//static.fczx.com/www/css/_common.css">
    <link rel="stylesheet" type="text/css" href="//static.fczx.com/www/css/_module.css">
    <script type="text/javascript" src="//api.map.baidu.com/api?v=2.0&ak=kM1RFA6AzOnv6lmlc7qyOMhqBILu1pgk"></script>
</head>

<style>
    .surround-content {
        height: 500px;
    }
</style>

<body>
    <div class="box-content mt30">
        <div class="box-surround table-detail">
            <div class="table-detail-header">
                <a href="" class="title">baidu map</a>
            </div>
            <div class="surround-content" id="map-container"></div>
        </div>
    </div>
    <script type="text/javascript">
        var map = new BMap.Map("map-container");
        var point = new BMap.Point(112.137256,32.056701);
        map.centerAndZoom(point, 15);
        map.enableScrollWheelZoom(true);
        map.addControl(new BMap.NavigationControl());
    </script>
</body>

</html>

 

html: 百度地图初始化

原文:https://www.cnblogs.com/Nyan-Workflow-FC/p/13216541.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!