@(笔记)[高德地图]案例:https://github.com/lhywell/map/tree/master/example/example5
申请高德地图密钥,申请请跳转链接
-
JavaScript API http://lbs.amap.com/api/javascript-api/summary
http://lbs.amap.com/api/javascript-api/example/map/map-show
提升配额是可以够买流量包的
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
<title>基本地图展示</title>
<link rel="stylesheet" href="http://cache.amap.com/lbs/static/main1119.css"/>
<script src="http://cache.amap.com/lbs/static/es5.min.js"></script>
<script src="http://webapi.amap.com/maps?v=1.4.2&key=您申请的key值"></script>
<script type="text/javascript" src="http://cache.amap.com/lbs/static/addToolbar.js"></script>
</head>
<body>
<div id="container"></div>
<script>
var map = new AMap.Map('container', {
resizeEnable: true,
zoom:11,
center: [116.397428, 39.90923]
});
</script>
</body>
</html>
上一页:百度
下一页:腾讯地图