高德地图 使用
程序员文章站
2022-10-04 14:34:04
前言 带你走进高德api 正文 高德api地址:https://lbs.amap.com/ 1、注册/登录 2、进入应用管理创建应用并申请key 3、在项目中使用 效果图 ......
前言
带你走进高德api
正文
高德api地址:
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>
效果图
上一篇: calc,support,media各自的含义及用法
下一篇: C# WPF联系人列表(1/3)