https://lbs.amap.com/api/jsapi-v2/guide/abc/quickstart
Key名称 | Key | 安全秘钥 |
---|---|---|
GIS | eb91dd62e638a8012007bc0ea6ce13c3 | d3c8aa8d353e42cbce00fdb6e7fd7797 |
<!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">
<link rel="stylesheet" href="https://a.amap.com/jsapi_demos/static/demo-center/css/demo-center.css" />
<title>地图显示</title>
<style>
html,
body,
#container {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="container"></div>
<!-- 加载地图JSAPI脚本 -->
<script src="https://webapi.amap.com/maps?v=2.0&key=eb91dd62e638a8012007bc0ea6ce13c3"></script>
<script>
var map = new AMap.Map('container', {
viewMode: '2D', // 默认使用 2D 模式,如果希望使用带有俯仰角的 3D 模式,请设置 viewMode: '3D',
zoom:11, //初始化地图层级
center: [114, 30] //初始化地图中心点
});
</script>
</body>
</html>