码迷,mamicode.com
首页 > Web开发 > 详细

web集成高德地图

时间:2018-06-20 18:50:34      阅读:1019      评论:0      收藏:0      [点我收藏+]

标签:4.6   maps   new   页面   代码   tool   cti   官网   tps   

1、使用高德地图API需到官网添加一个Key,http://lbs.amap.com/dev/key/app 

2、页面头引入 


<div id="addressMap"></div>
<script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.6&key=申请的key值"></script>

3、js里面代码如下:

// 新建高德地图对象
    var map = new AMap.Map("addressMap", {               // 填写ID
        center: [114.1827800000, 22.3060300000],         // 经纬度
        zoom: 17         // 放大系数
    });

    // 增加高德地图插件
    AMap.plugin(
        ["AMap.ToolBar", "AMap.Geolocation"],
        function () {
            //异步加载插件
            var toolbar = new AMap.ToolBar();
            map.addControl(toolbar);
            var geolocation = new AMap.Geolocation();
            map.addControl(geolocation);
            var marker = new AMap.Marker({
                position: [114.1827800000, 22.3060300000],
                title: ‘某地方‘,
                topWhenClick: true,
                visible: true,
                animation: ‘AMAP_ANIMATION_BOUNCE‘,
                clickable: true,
                label: {content: ‘<span style="color:rgb(0,0,0);">某地方</span>‘}
            });
            map.add(marker);
        }
    );

具体API请到官网查看: http://lbs.amap.com/api/javascript-api/summary

web集成高德地图

标签:4.6   maps   new   页面   代码   tool   cti   官网   tps   

原文地址:https://www.cnblogs.com/peter-web/p/9204460.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!