高德地图 使用

前言

带你走进高德api

正文

高德api地址:https://lbs.amap.com/

1、注册/登录

 2、进入应用管理创建应用并申请key

 3、在项目中使用  

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <script src="https://webapi.amap.com/maps?v=1.4.15&key=782ef4b3c315b5e2cc833eaad259bb93"></script>
    <style>
        html,body,#map{
            width: 100%;
            height: 100%;
        }
    </style>
</head>
    <div id="map"></div>
<body>
    <script>
        var map = new AMap.Map('map', {
            resizeEnable: true, //是否监控地图容器尺寸变化
            zoom:14, //初始化地图层级
            center: [108.947025,34.2613255] //初始化地图中心点
        });
        var marker = new AMap.Marker({
            icon: "dw.png",
            imageSize: "20px",
            position: [108.947025,34.2613255],
            offset: new AMap.Pixel(-13, -30),
            // 设置是否可以拖拽
            draggable: true,
            cursor: 'move',
            // 设置拖拽效果
            raiseOnDrag: true
        });
        marker.setMap(map);
    </script>
</body>
</html>

 效果图

猜你喜欢

转载自www.cnblogs.com/lihengbin/p/11388940.html