[toc]
概述
地图 JS API 2.0 是高德开放平台免费提供的第四代 Web 地图渲染引擎, 以 WebGL 为主要绘图手段,本着“更轻、更快、更易用”的服务原则,广泛采用了各种前沿技术,交互体验、视觉体验大幅提升,同时提供了众多新增能力和特性
高德地图使用 Web 墨卡托投影,即采用 EPSG:3857 坐标系统
高德地图采用 GCJ-02 坐标系,即火星坐标系
官网
- 官网:https://ditu.amap.com/
- 开放平台:https://lbs.amap.com/
- 文档:https://lbs.amap.com/api/javascript-api-v2/summary
- 示例:https://lbs.amap.com/demo/list/js-api-v2
- 手册:https://lbs.amap.com/api/javascript-api-v2/documentation
成为开发者
概述
想要使用高德地图,必须先注册成为开发者,获取key
安全密钥机制旨在提升用户对 key 的安全有效管理,降低明文传输被窃取的风险。 2021年12月02日后创建的 key 必须配备安全密钥一起使用
步骤
第一步:登录高德开放平台控制台
https://console.amap.com/

选择登录方式
第二步:注册为开发者
登录后显示此界面

选择认证方式

成为个人开发者即可



第三步:创建key
进入应用管理,创建新应用
https://console.amap.com/dev/key/app




点击添加key


第四步:获取key和密钥
创建成功后,可获取 key 和安全密钥

流量限制

JS API 安全密钥使用
概述
在2021年12月02日以后申请的 key 需要配合你的安全密钥一起使用
为了增强安全性,建议将安全密钥存储在服务器端,并通过服务器端生成地图 JS API 的请求 URL。这样可以避免将密钥直接以明文的方式暴露给 Web 端代码中,减少密钥被滥用的风险,如果你只是想便捷开发可以使用明文方式设置
秘钥使用有代理服务器转发和明文方式设置两种方式
通过代理服务器转发
以Nginx反向代理为例,参考以下三个location配置,进行反向代理设置,分别对应自定义地图、海外地图、Web 服务,其中自定义地图和海外地图如果没有使用到相关功能也可以不设置。需要将以下配置中的**「你的安全密钥」**六个字替换为你刚刚获取的securityJsCode安全密钥
server {
listen 80; #nginx端口设置,可按实际端口修改
server_name 127.0.0.1; #nginx server_name 对应进行配置,可按实际添加或修改
# 自定义地图和海外地图如果没有使用到相关功能可以不设置,但是如果需要设置顺序要与示例一致
# 自定义地图服务代理
location /_AMapService/v4/map/styles {
set $args "$args&jscode=你的安全密钥";
proxy_pass https://webapi.amap.com/v4/map/styles;
}
# 海外地图服务代理
location /_AMapService/v3/vectormap {
set $args "$args&jscode=你的安全密钥";
proxy_pass https://fmap01.amap.com/v3/vectormap;
}
# Web服务API 代理
location /_AMapService/ {
set $args "$args&jscode=你的安全密钥";
proxy_pass https://restapi.amap.com/;
}
}JS API 使用<script>标签同步加载增加代理服务器设置脚本,设置代理服务器域名或地址,将下面示例代码中的**「你的代理服务器域名或地址」**替换为你的代理服务器域名或 ip 地址,其中_AMapService为代理请求固定前缀,不可省略或修改
脚本同步加载为例:
<div id="container"></div>
<script type="text/javascript">
window._AMapSecurityConfig = {
serviceHost: "你的代理服务器域名或地址/_AMapService",
//例如 :serviceHost:'http://1.1.1.1:80/_AMapService',
};
</script>
<script
type="text/javascript"
src="https://webapi.amap.com/maps?v=2.0&key=你申请的key值"
></script>
<script type="text/javascript">
//地图初始化应该在地图容器div已经添加到DOM树之后
var map = new AMap.Map("container", {
zoom: 12,
});
</script>通过明文方式设置
JS API 安全密钥以明文方式设置,不建议在生产环境使用,不安全
JS API 使用<script>标签同步加载增加安全密钥设置脚本,并将**「你申请的安全密钥」**替换为你的安全密钥
<div id="container"></div>
<script type="text/javascript">
window._AMapSecurityConfig = {
securityJsCode: "「你申请的安全密钥」",
};
</script>
<script
type="text/javascript"
src="https://webapi.amap.com/maps?v=2.0&key=你申请的key值"
></script>
<script type="text/javascript">
//地图初始化应该在地图容器div已经添加到DOM树之后
var map = new AMap.Map("container", {
zoom: 12,
});
</script>入门程序
第一步:配置nginx
配置文件如下,需要替换秘钥
#配置运行Nginx进程生成的worker进程数
worker_processes 2;
#配置Nginx服务器运行对错误日志存放的路径
error_log ./logs/error.log;
#配置Nginx服务器允许时记录Nginx的master进程的PID文件路径和名称
pid ./logs/nginx.pid;
#配置Nginx服务是否以守护进程方法启动
#daemon on;
events{
#设置Nginx网络连接序列化
accept_mutex on;
#设置Nginx的worker进程是否可以同时接收多个请求
multi_accept on;
#设置Nginx的worker进程最大的连接数
worker_connections 1024;
#设置Nginx使用的事件驱动模型
#use epoll;
}
http{
#定义MIME-Type
include mime.types;
default_type application/octet-stream;
server {
listen 8089;
server_name localhost;
# 自定义地图和海外地图如果没有使用到相关功能可以不设置,但是如果需要设置顺序要与示例一致
# 自定义地图服务代理
location /_AMapService/v4/map/styles {
set $args "$args&jscode=你的安全密钥";
proxy_pass https://webapi.amap.com/v4/map/styles;
}
# 海外地图服务代理
location /_AMapService/v3/vectormap {
set $args "$args&jscode=你的安全密钥";
proxy_pass https://fmap01.amap.com/v3/vectormap;
}
# Web服务API 代理
location /_AMapService/ {
set $args "$args&jscode=你的安全密钥";
proxy_pass https://restapi.amap.com/;
}
}
}第二步:检查配置
命令:
nginx -tPS D:\opensoft\nginx-1.24.0\conf> cd ..
PS D:\opensoft\nginx-1.24.0> ls
目录: D:\opensoft\nginx-1.24.0
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2023/5/17 14:24 cache
d----- 2023/5/12 14:54 conf
d----- 2023/4/11 23:31 contrib
d----- 2023/4/11 23:31 docs
d----- 2023/5/18 14:11 file
d----- 2023/5/3 14:45 html
d----- 2023/5/12 14:54 key
d----- 2023/5/19 14:10 logs
d----- 2023/5/19 13:58 static
d----- 2023/4/29 13:29 temp
-a---- 2023/4/11 23:29 3811328 nginx.exe
PS D:\opensoft\nginx-1.24.0> .\nginx.exe -t
nginx: the configuration file D:\opensoft\nginx-1.24.0/conf/nginx.conf syntax is ok
nginx: configuration file D:\opensoft\nginx-1.24.0/conf/nginx.conf test is successful
PS D:\opensoft\nginx-1.24.0>第三步:启动
前台启动:
PS D:\opensoft\nginx-1.24.0> ./nginx第四步:HTML页面准备
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>高德地图入门程序</title>
<style>
html,
body,
#container {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="container"></div>
</body>
<script>
window._AMapSecurityConfig = {
serviceHost: 'http://127.0.0.1:8089/_AMapService',
};
</script>
<script
type="text/javascript"
src="https://webapi.amap.com/maps?v=2.0&key=318d115b92dd7beb6e26260a2e208256"
></script>
<script>
//地图初始化应该在地图容器div已经添加到DOM树之后
var map = new AMap.Map("container", {
zoom: 12,
});
</script>
</html>
另一种写法:
<script type="text/javascript">
window._AMapSecurityConfig = {
securityJsCode: "「你申请的安全密钥」",
};
</script>
<script src="https://webapi.amap.com/loader.js"></script>
<script type="text/javascript">
AMapLoader.load({
key: "「你申请的应用Key」", //申请好的Web端开发者 Key,调用 load 时必填
version: "2.0", //指定要加载的 JS API 的版本,缺省时默认为 1.4.15
})
.then((AMap) => {
const map = new AMap.Map("container");
})
.catch((e) => {
console.error(e); //加载错误提示
});
</script>第五步:添加标记点Marker
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>高德地图入门程序</title>
<style>
html,
body,
#container {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="container"></div>
</body>
<script>
window._AMapSecurityConfig = {
serviceHost: 'http://127.0.0.1:8089/_AMapService',
};
</script>
<script
type="text/javascript"
src="https://webapi.amap.com/maps?v=2.0&key=318d115b92dd7beb6e26260a2e208256"
></script>
<script>
//地图初始化应该在地图容器div已经添加到DOM树之后
var map = new AMap.Map("container", {
zoom: 12,
});
const marker =new AMap.Marker({
position:[116.25789,39.2456]
})
map.add(marker);
const marker2 =new AMap.Marker({
position:[112.58756,23.57865]
})
map.add(marker2);
</script>
</html>
第六步:添加折线
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>高德地图入门程序</title>
<style>
html,
body,
#container {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="container"></div>
</body>
<script>
window._AMapSecurityConfig = {
serviceHost: 'http://127.0.0.1:8089/_AMapService',
};
</script>
<script
type="text/javascript"
src="https://webapi.amap.com/maps?v=2.0&key=318d115b92dd7beb6e26260a2e208256"
></script>
<script>
//地图初始化应该在地图容器div已经添加到DOM树之后
var map = new AMap.Map("container", {
zoom: 12,
});
const marker = new AMap.Marker({
position: [116.25789, 39.2456]
})
map.add(marker);
const marker2 = new AMap.Marker({
position: [112.58756, 23.57865]
})
map.add(marker2);
const line = [[115.2578, 26.2568], [115.257, 33.2586], [114.257, 39.25777], [112.258, 26.255465]];
const polyline = new AMap.Polyline({
path: line, //设置线覆盖物路径
strokeColor: "#3366FF", //线颜色
strokeWeight: 5, //线宽
strokeStyle: "solid", //线样式
});
map.add(polyline);
</script>
</html>
整合vue
vue2
第一步:创建项目

第二步:安装依赖
npm i @amap/amap-jsapi-loader --savePS D:\程序\2024Q1\vue-integration-amap> npm i @amap/amap-jsapi-loader --save
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
+ @amap/[email protected]
added 1 package from 1 contributor and audited 971 packages in 3.294s
95 packages are looking for funding
run `npm fund` for details
found 2 moderate severity vulnerabilities
run `npm audit fix` to fix them, or `npm audit` for details
PS D:\程序\2024Q1\vue-integration-amap>可以看到package.json多了一项:

第三步:新建文件
在sr/view目录下新建一个vue文件

第四步:创建地图容器
<template>
<div id="container"></div>
</template>
<script>
export default {
}
</script>
<style scoped>
</style>第五步:设置样式
<template>
<div id="container"></div>
</template>
<script>
export default {
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 800px;
}
</style>第六步:导入依赖
<template>
<div id="container"></div>
</template>
<script>
import AMapLoader from '@amap/amap-jsapi-loader';
export default {
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 800px;
}
</style>第七步:完善代码
<template>
<div id="container"></div>
</template>
<script>
import AMapLoader from '@amap/amap-jsapi-loader';
export default {
mounted()
{
window._AMapSecurityConfig = {
serviceHost: `http://127.0.0.1:8089/_AMapService`
}
this.initAMap();
},
unmounted()
{
this.map?.destroy();
},
methods:
{
/**
* 初始化高德地图
*/
initAMap()
{
AMapLoader.load({
key: "318d115b92dd7beb6e26260a2e208256", // 申请好的Web端开发者Key,首次调用 load 时必填
version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
// 需要使用的的插件列表,如比例尺'AMap.Scale'等
plugin: [
'AMap.Autocomplete', // 输入提示插件
'AMap.PlaceSearch', // POI搜索插件
'AMap.Scale', // 右下角缩略图插件 比例尺
'AMap.OverView', // 地图鹰眼插件
'AMap.ToolBar', // 地图工具条
'AMap.Geolocation', // 定位控件,用来获取和展示用户主机所在的经纬度位置
'AMap.MarkerClusterer',
'AMap.Geocoder'
],
})
.then((AMap) =>
{
this.map = new AMap.Map("container", {
// 设置地图容器id
viewMode: "3D", // 是否为3D地图模式
zoom: 12, // 初始化地图级别
center: [111.397428, 23.90923], // 初始化地图中心点位置
});
})
.catch((e) =>
{
console.log(e);
});
},
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 800px;
}
</style>第八步:添加点
<template>
<div>
<div id="container"></div>
<div>
<button @click="addPoint">添加点</button>
<button @click="clear">清空</button>
</div>
</div>
</template>
<script>
import AMapLoader from '@amap/amap-jsapi-loader';
export default {
mounted()
{
window._AMapSecurityConfig = {
serviceHost: `http://127.0.0.1:8089/_AMapService`
}
this.initAMap();
},
unmounted()
{
this.map?.destroy();
},
methods:
{
/**
* 初始化高德地图
*/
initAMap()
{
AMapLoader.load({
key: "318d115b92dd7beb6e26260a2e208256", // 申请好的Web端开发者Key,首次调用 load 时必填
version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
// 需要使用的的插件列表,如比例尺'AMap.Scale'等
plugin: [
'AMap.Autocomplete', // 输入提示插件
'AMap.PlaceSearch', // POI搜索插件
'AMap.Scale', // 右下角缩略图插件 比例尺
'AMap.OverView', // 地图鹰眼插件
'AMap.ToolBar', // 地图工具条
'AMap.Geolocation', // 定位控件,用来获取和展示用户主机所在的经纬度位置
'AMap.MarkerClusterer',
'AMap.Geocoder'
],
})
.then((AMap) =>
{
this.map = new AMap.Map("container", {
// 设置地图容器id
viewMode: "3D", // 是否为3D地图模式
zoom: 12, // 初始化地图级别
center: [111.397428, 23.90923], // 初始化地图中心点位置
});
})
.catch((e) =>
{
console.log(e);
});
},
addPoint()
{
const marker = new AMap.Marker({
position: [100 + Math.random() * 22, 22 + Math.random() * 20]
})
this.map.add(marker);
},
clear()
{
this.map.clearMap();
}
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 800px;
}
</style>
vue3
第一步:创建项目


第二步:安装依赖
npm i @amap/amap-jsapi-loader --save第三步:新建文件
在sr/view目录下新建一个vue文件
第四步:创建地图容器
<template>
<div id="container"></div>
</template>
<script setup>
</script>
<style scoped>
</style>第五步:设置样式
<template>
<div id="container"></div>
</template>
<script setup>
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 800px;
}
</style>第六步:导入依赖
<template>
<div id="container"></div>
</template>
<script setup>
import AMapLoader from '@amap/amap-jsapi-loader';
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 800px;
}
</style>第七步:完善代码
<template>
<div id="container"></div>
</template>
<script setup>
import AMapLoader from '@amap/amap-jsapi-loader';
import {onBeforeMount, onMounted, onUnmounted} from 'vue'
onBeforeMount(()=>
{
window._AMapSecurityConfig = {
serviceHost: `http://127.0.0.1:8089/_AMapService`
}
})
onMounted(()=>
{
initAMap();
})
onUnmounted(()=>
{
this.map?.destroy();
})
/**
* 初始化高德地图
*/
function initAMap()
{
AMapLoader.load({
key: "318d115b92dd7beb6e26260a2e208256", // 申请好的Web端开发者Key,首次调用 load 时必填
version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
// 需要使用的的插件列表,如比例尺'AMap.Scale'等
plugin: [
'AMap.Autocomplete', // 输入提示插件
'AMap.PlaceSearch', // POI搜索插件
'AMap.Scale', // 右下角缩略图插件 比例尺
'AMap.OverView', // 地图鹰眼插件
'AMap.ToolBar', // 地图工具条
'AMap.Geolocation', // 定位控件,用来获取和展示用户主机所在的经纬度位置
'AMap.MarkerClusterer',
'AMap.Geocoder'
],
})
.then((AMap) =>
{
this.map = new AMap.Map("container", {
// 设置地图容器id
viewMode: "3D", // 是否为3D地图模式
zoom: 12, // 初始化地图级别
center: [111.397428, 23.90923], // 初始化地图中心点位置
});
})
.catch((e) =>
{
console.log(e);
});
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 800px;
}
</style>封装
在src/utils下创建amapUtils.ts
import AMapLoader from '@amap/amap-jsapi-loader';
const defaultPlugin: Array<string> = [
'AMap.Autocomplete', // 输入提示插件
'AMap.PlaceSearch', // POI搜索插件
'AMap.Scale', // 右下角缩略图插件 比例尺
'AMap.OverView', // 地图鹰眼插件
'AMap.ToolBar', // 地图工具条
'AMap.Geolocation', // 定位控件,用来获取和展示用户主机所在的经纬度位置
'AMap.MarkerClusterer',
'AMap.Geocoder'
];
/**
* 初始化地图
* @param that vue视图的this指针
* @param pluginList 插件列表
* @param param 参数
* @param key 高德地图的key
*/
export function initAMap(that: any, pluginList: Array<string>, param: object, key: string): any
{
window._AMapSecurityConfig = {
serviceHost: `http://127.0.0.1:8089/_AMapService`
}
const plugin = pluginList ? pluginList : defaultPlugin
AMapLoader.load({
key: key ? key : "318d115b92dd7beb6e26260a2e208256", // 申请好的Web端开发者Key,首次调用 load 时必填
version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
// 需要使用的的插件列表,如比例尺'AMap.Scale'等
plugin: plugin,
})
.then((AMap: any) =>
{
const params = param ? param : {
// 设置地图容器id
viewMode: "3D", // 是否为3D地图模式
zoom: 12, // 初始化地图级别
center: [111.397428, 23.90923], // 初始化地图中心点位置
}
const map = new AMap.Map("container", params);
that.map = map;
})
.catch((e: Error) =>
{
console.log('加载失败:', e);
});
}
/**
* 销毁地图
* @param map 高德地图容器对象
*/
export function destroy(map: any): void
{
map?.destroy();
}在src目录下创建env.d.ts
declare module "@amap/amap-jsapi-loader";在src目录下创建global.d.ts
// src/global.d.ts
export {}
declare global {
interface Window {
_AMapSecurityConfig: any;
}
}
declare const window: any;使用示例:
<template>
<div id="container"></div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
}
},
methods: {},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>入门
图层
概述
JS API 支持官方图层、三方图层、数据图层等
实时交通路况图层AMap.TileLayer.Traffic
- 标准图层 TileLayer
- 卫星图层 TileLayer.Satellite
- 路网图层 TileLayer.RoadNet
- 实时交通图层 TileLayer.Traffic
- 楼块图层 Buildings
- 室内图层 IndoorMap
使用
创建图层
const layer = new AMap.createDefaultLayer({
zooms: [3, 20], //可见级别
visible: true, //是否可见
opacity: 1, //透明度
zIndex: 0, //叠加层级
});加载图层
const map = new AMap.Map("container", {
viewMode: "2D", //默认使用 2D 模式
zoom: 11, //地图级别
center: [116.397428, 39.90923], //地图中心点
layers: [layer], //layer为创建的默认图层
});<template>
<div>
<div id="container"></div>
<button @click="addLayer">加载图层</button>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View2",
data()
{
return {
map: null,
}
},
methods: {
addLayer()
{
const layer = new AMap.createDefaultLayer({
zooms: [3, 20], //可见级别
visible: true, //是否可见
opacity: 1, //透明度
zIndex: 0, //叠加层级
});
this.map.setLayers(layer);
},
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>实时交通路况图层
AMap.TileLayer.Traffic
| 参数/方法 | 说明 | 类型 | 参数值描述 | 默认值 |
|---|---|---|---|---|
| autoRefresh | 是否自动刷新 | Boolean | true | false | false |
| interval | 刷新间隔 | Number | 自动更新数据间隔的毫秒数 | 180 |
添加图层使用map.add(traffic),移除路况图层:map.remove(traffic)
<template>
<div>
<div id="container"></div>
<button @click="addLayer">加载图层</button>
<button @click="addTraffic">创建实时交通路况图层</button>
<button @click="showTraffic">显示路况图层</button>
<button @click="hideTraffic">隐藏路况图层</button>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View2",
data()
{
return {
map: null,
traffic: null,
}
},
methods: {
addLayer()
{
const layer = new AMap.createDefaultLayer({
zooms: [3, 20], //可见级别
visible: true, //是否可见
opacity: 1, //透明度
zIndex: 0, //叠加层级
});
this.map.setLayers(layer);
},
addTraffic()
{
if (this.traffic)
{
return;
}
const traffic = new AMap.TileLayer.Traffic({
autoRefresh: true, //是否自动刷新,默认为false
interval: 60, //刷新间隔,默认180s
});
this.traffic = traffic;
this.map.add(traffic);
},
showTraffic()
{
if (this.traffic)
{
this.traffic.show();
}
},
hideTraffic()
{
if (this.traffic)
{
this.traffic.hide();
}
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>
显示后:

卫星与路网图层
<template>
<div>
<div id="container"></div>
<button @click="addTraffic">创建卫星与路网图层</button>
<button @click="showTraffic">显示图层</button>
<button @click="hideTraffic">隐藏图层</button>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View3",
data()
{
return {
map: null,
traffic: null,
}
},
methods: {
addTraffic()
{
if (this.traffic)
{
return;
}
const traffic = new AMap.TileLayer.Satellite();
//创建路网图层
var roadNet = new AMap.TileLayer.RoadNet();
this.traffic = traffic;
this.map.setLayers([traffic, roadNet]);
},
showTraffic()
{
if (this.traffic)
{
this.traffic.show();
}
},
hideTraffic()
{
if (this.traffic)
{
this.traffic.hide();
}
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>

楼块图层
楼块图层用于展示矢量建筑物,与标准图层中的楼块要素的效果相同。二者区别在于,楼块图层可以用来实现一些特殊的效果,如 3D 视图下为楼块指定高度比例系数heightFactor
楼块图层的有效缩放级别范围为[ 17, 20 ]
创建楼块图层需要在初始化地图的时候设置showBuildingBlock: false属性,此属性会展示默认的楼块图层,此时再创建楼块图层会存在两个楼块图层
<template>
<div>
<div id="container"></div>
<button @click="addTraffic">创建楼块图层</button>
<button @click="showTraffic">显示楼块图层</button>
<button @click="hideTraffic">隐藏楼块图层</button>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View4",
data()
{
return {
map: null,
traffic: null,
}
},
methods: {
addTraffic()
{
if (this.traffic)
{
return;
}
const traffic = new AMap.Buildings({
zooms: [17, 20],
zIndex: 10,
heightFactor: 2, //2倍于默认高度(3D 视图下生效)
});
this.traffic = traffic;
this.map.add(traffic);
},
showTraffic()
{
if (this.traffic)
{
this.traffic.show();
}
},
hideTraffic()
{
if (this.traffic)
{
this.traffic.hide();
}
}
},
created()
{
console.log("初始化")
initAMap(this,undefined,{
center: [116.397428, 39.90923], //地图中心点
viewMode: "3D", //地图模式
pitch: 60, //俯仰角度
rotation: -35, //地图顺时针旋转角度
zoom: 17, //地图级别
showBuildingBlock: false,
});
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 88vh;
}
</style>

地图控件
概述
JS API 提供了众多的控件,需要引入之后才能使用这些控件的功能
缩放控件 AMap.ToolBar地图的放大和缩小 | 比例尺控件 AMap.Scale显示当前地图的比例尺 | 控制罗盘控件 AMap.ControlBar控制地图旋转和倾斜 |
|---|---|---|
定位控件AMap.Geolocation提供定位功能 | 鹰眼控件 AMap.HawkEye地图缩略图,标记当前展示区域 | 图层切换控件 AMap.MapType切换不同的地图类型 |
插件列表
| 类名 | 类功能说明 | 相应教程 | 属性及方法说明 |
|---|---|---|---|
| AMap.ElasticMarker | 灵活点标记,可以随着地图级别改变样式和大小的 Marker | 灵活点标记 | AMap.ElasticMarker |
| AMap.ToolBar | 工具条,控制地图的缩放、平移等 | 添加地图控件 | AMap.ToolBar |
| AMap.Scale | 比例尺,显示当前地图中心的比例尺 | AMap.Scale | |
| AMap.HawkEye | 鹰眼,用于显示缩略地图,显示于地图右下角,可以随主图的视口变化而变化 | AMap.HawkEye | |
| AMap.ControlBar | 组合了旋转、倾斜、复位在内的地图控件 | 添加地图控件 | AMap.ControlBar |
| AMap.MapType | 图层切换,通过该插件可以进行地图切换 | JS API 加载器 | AMap.MapType |
| AMap.Geolocation | 浏览器定位,提供了获取用户当前准确位置、所在城市的方法 | 定位 | AMap.Geolocation |
| AMap.AutoComplete | 输入提示,提供了根据关键字获得提示信息的功能 | 输入提示与POI搜索 | AMap.AutoComplete |
| AMap.PlaceSearch | 地点搜索服务,提供了关键字搜索、周边搜索、范围内搜索等功能 | AMap.PlaceSearch | |
| AMap.DistrictSearch | 行政区查询服务,提供了根据名称关键字、citycode、adcode 来查询行政区信息的功能 | 行政区查询 | AMap.DistrictSearch |
| AMap.LineSearch | 公交路线服务,提供公交路线相关信息查询服务 | 公交线路与站点查询 | AMap.LineSearch |
| AMap.StationSearch | 公交站点查询服务,提供途经公交线路、站点位置等信息 | AMap.StationSearch | |
| AMap.Driving | 驾车路线规划服务,提供按照起、终点进行驾车路线的功能 | 路线规划 | AMap.Driving |
| AMap.TruckDriving | 货车路线规划,提供起、终点坐标的驾车导航路线查询功能 | AMap.TruckDriving | |
| AMap.Transfer | 公交路线规划服务,提供按照起、终点进行公交路线的功能 | AMap.Transfer | |
| AMap.Walking | 步行路线规划服务,提供按照起、终点进行步行路线的功能 | AMap.Walking | |
| AMap.Riding | 骑行路线规划服务,提供按照起、终点进行骑行路线的功能 | AMap.Riding | |
| AMap.DragRoute | 拖拽导航插件,可拖拽起终点、途经点重新进行路线规划 | AMap.DragRoute | |
| AMap.Geocoder | 地理编码与逆地理编码服务,提供地址与坐标间的相互转换 | 地理编码与逆地理编码 | AMap.Geocoder |
| AMap.CitySearch | 城市获取服务,获取用户所在城市信息或根据给定IP参数查询城市信息 | 定位 | AMap.CitySearch |
| AMap.IndoorMap | 室内地图,用于在地图中显示室内地图 | 叠加室内地图 | AMap.IndoorMap |
| AMap.MouseTool | 鼠标工具插件,用于鼠标画标记点、线、多边形、矩形、圆、距离量测、面积量测、拉框放大、拉框缩小等功能 | 绘制矢量图形 | AMap.MouseTool |
| AMap.CircleEditor | 圆编辑插件,用于使用鼠标改变圆半径大小、拖拽圆心改变圆的位置 | 圆的绘制 | AMap.CircleEditor |
| AMap.PolygonEditor | 多边形编辑插件,用于通过鼠标调整多边形形状 | 面编辑 | AMap.PolygonEditor |
| AMap.PolylineEditor | 折线编辑器,用于通过鼠标调整折线的形状 | 折线编辑 | AMap.PolylineEditor |
| AMap.RectangleEditor | 矩形编辑器,用于通过鼠标调整矩形形状。 | 矩形编辑 | AMap.RectangleEditor |
| AMap.EllipseEditor | 椭圆编辑器,用于通过鼠标调整椭圆形状。 | 椭圆编辑 | AMap.EllipseEditor |
| AMap.BezierCurveEditor | 贝塞尔曲线编辑器,用于通过鼠标调整贝塞尔曲线形状。 | 贝塞尔曲线编辑 | AMap.BezierCurveEditor |
| AMap.MarkerCluster | 点聚合插件,用于展示大量点标记,将点标记按照距离进行聚合,以提高绘制性能 | 点聚合 | AMap.MarkerCluster |
| AMap.RangingTool | 测距插件,可以用距离或面积测量 | 测距工具 | AMap.RangingTool |
| AMap.CloudDataSearch | 云图搜索服务,根据关键字搜索云图点信息 | AMap.CloudDataSearch | |
| AMap.Weather | 天气预报插件,用于获取未来的天气信息 | 天气 | AMap.Weather |
| AMap.HeatMap | 热力图插件(暂时不支持移动端,建议使用 Loca 热力图) | AMap.HeatMap |
引入地图控件
//异步加载控件
AMap.plugin('AMap.ToolBar',function(){
var toolbar = new AMap.ToolBar(); //缩放工具条实例化
map.addControl(toolbar);
});控制地图控件
toolbar.show(); //缩放工具展示
toolbar.hide(); //缩放工具隐藏使用
<template>
<div>
<div id="container"></div>
<button @click="addItem1">添加工具条</button>
<button @click="showItem(0)">显示工具条</button>
<button @click="hideItem(0)">隐藏工具条</button>
<button @click="addItem2">添加比例尺</button>
<button @click="showItem(1)">显示比例尺</button>
<button @click="hideItem(1)">隐藏比例尺</button>
<button @click="addItem3">添加鹰眼</button>
<button @click="showItem(2)">显示鹰眼</button>
<button @click="hideItem(2)">隐藏鹰眼</button>
<button @click="addItem4">添加控制控件</button>
<button @click="showItem(3)">显示控制控件</button>
<button @click="hideItem(3)">隐藏控制控件</button>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
itemList: {
item1: null,
item2: null,
item3: null,
item4: null,
}
}
},
methods: {
addItem1()
{
if (this.itemList.item1)
{
return;
}
AMap.plugin('AMap.ToolBar', () =>
{
this.itemList.item1 = new AMap.ToolBar();
this.map.addControl(this.itemList.item1);
});
},
addItem2()
{
if (this.itemList.item2)
{
return;
}
AMap.plugin('AMap.Scale', () =>
{
this.itemList.item2 = new AMap.Scale();
this.map.addControl(this.itemList.item2);
});
},
addItem3()
{
if (this.itemList.item3)
{
return;
}
AMap.plugin('AMap.HawkEye', () =>
{
this.itemList.item3 = new AMap.HawkEye();
this.map.addControl(this.itemList.item3);
});
},
addItem4()
{
if (this.itemList.item4)
{
return;
}
AMap.plugin('AMap.ControlBar', () =>
{
this.itemList.item4 = new AMap.ControlBar();
this.map.addControl(this.itemList.item4);
});
},
showItem(index)
{
const key = Object.keys(this.itemList)[index];
this.itemList[key].show();
},
hideItem(index)
{
const key = Object.keys(this.itemList)[index];
this.itemList[key].hide();
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 88vh;
}
</style>
地图组成和常用名词
地图组成

使用高德地图 JS API 创建的地图通常由这几部分组成:
- 地图容器 Container
- 图层 Layers
- 矢量图形 Vector Overlays
- 点标记 Markers
- 地图控件 Map Controls
地图容器 Container
即在准备阶段所创建的指定了 id 的<div>对象,这个<div>将作为承载所有图层、点标记、矢量图形、控件的容器
图层 Layers
图层是指能够在视觉上覆盖一定地图范围,用来描述全部或者部分现实世界区域内的地图要素的抽象概念,一幅地图通常由一个或者多个图层组成。如上图中处于整个地图容器最下方的二维矢量图层和实施交通图层。
矢量图形 Vector Overlays
矢量图形,一般覆盖于底图图层之上,通过矢量的方式(路径或者实际大小)来描述其形状,用几何的方式来展示真实的地图要素,会随着地图缩放而发生视觉大小的变化,但其代表的实际路径或范围不变,如上图中红框内的折线、圆、多边形等
除了图中的折线、圆、多边形之外,JS API 还提供了矩形、椭圆、贝瑟尔曲线等常用的矢量图形。3D 视图下的立面体等可以看做是一些特殊的矢量图形
点标记 Markers
点标记是用来标示某个位置点信息的一种地图要素,覆盖于图层之上。如图中蓝色方框中的两个点状要素。其在屏幕上的位置会随着地图的缩放和中心变化而发生改变,但是会与图层内的要素保持相对静止
地图控件 Map Controls
控件浮在所有图层和地图要素之上,用于满足一定的交互或提示功能。一般相对于地图容器静止,不随着地图缩放和中心变化而发生位置的变化。如上图中绿色方框中的比例尺和级别控件
常用名词
插件 Plugins
插件是独立于 JS API 地图核心模块之外的一些功能,比如服务类、绘制工具、矢量图形编辑工具、点聚合、热力图等
地图级别 ZoomLevel
级别与地图的比例尺成正比,每增大一级,地图的比例尺也增大一倍,地图显示的越详细。Web地图的最小级别通常为3级,最大级别各家略有不同,高德地图 JS API 目前最大级别为 20 级
经纬度 LngLat
坐标通常指经纬度坐标,高德地图的坐标范围大致为:东西经 180 度([-180, 180],西半球为负,东半球为正),南北纬 85 度([-85, 85],北半球为正,南半球为负
底图 BaseLayer
严格意义上,底图指处于所有图层和图形最下方的一个图层,通常不透明。可以是单一图层,比如官方标准图层,也可以是图层组合,比图卫星图层和路网图层组合
地图要素 Map Features
严格意义的地图要素指的是展示在地图上的地理要素,包括道路、区域面、建筑、POI 标注、路名等。开发者自定义的点标记、矢量图形也可以看做是一种地图要素
标注 Labels
我们习惯将底图上自带的标示一定信息的文字或图标称为标注,比如 POI 标注,道路名称标注等
地图平面像素坐标 Plane Coordinates
地图平面像素坐标指投影为平面之后的地图上的平面像素坐标,高德地图使用的Web墨卡托投影,在 3 级时,平面坐标范围为横纵[0, 2562^3]像素,每级别扩大一倍,即第 n 级的平面坐标范围为 [0, -2562^n]像素
投影 Projection
地图投影指的是将地球球面的经纬度坐标映射到地图平面坐标的变换和映射关系
基础类
概述
使用 JS API 开发之前有几个基础类型需要了解一下,包括:
- 经纬度AMap.LngLat
- 像素点AMap.Pixel
- 像素尺寸 AMap.Size
- 经纬度矩形边界 AMap.Bounds
经纬度
概述
经纬度(AMap.LngLat)是利用三维球面空间来描述地球上一个位置的坐标系统,每个经纬度坐标由经度 lng 和纬度 lat 两个分量组成。在 JS API 里使用经纬度来表示地图的中心点center、点标记的位置position、圆的中心点center、折线和多边形的路径path等,以及其他所有表述实际位置的地方
经纬度的有效范围为 [-180, 180],纬度大约为 [-85, 85]
使用
var position = new AMap.LngLat(116, 39);//标准写法
var position = [116, 39]; //简写
var map = new AMap.Center('conatiner',{
center:position
})var path = [new AMap.LngLat(116,39), new AMap.LngLat(116,40), new AMap.LngLat(117,39)] //标准写法
var path = [ [116,39], [116,40], [117,39] ]; //简写
var polyline = new AMap.Polyline({
path : path,
})
map.add(polyline);<template>
<div>
<div id="container"></div>
<button @click="addPoint1">添加点1</button>
<button @click="addPoint2">添加点2</button>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
}
},
methods: {
addPoint1()
{
const marker = new AMap.Marker({
title: '标记点1',
position: new AMap.LngLat(113.34, 23.6532),
})
this.map.add(marker)
},
addPoint2()
{
const marker = new AMap.Marker({
title: '标记点1',
position: [114.45, 23.765]
})
this.map.add(marker)
},
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>
使用经纬度类型可以进行一些简单的位置计算,比如点与点、点与线的距离,根据距离差计算另一个经纬度等
var lnglat1 = new AMap.LngLat(116, 39);
var lnglat2 = new AMap.LngLat(117, 39);
var distance = lnglat1.distance(lnglat2);//计算lnglat1到lnglat2之间的实际距离(m)
var lnglat3 = lnglat1.offset(100,50)//lnglat1向东100m,向北50m的位置的经纬度<template>
<div>
<div id="container"></div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View8",
data()
{
return {
map: null,
marker1: null,
marker2: null,
}
},
watch:
{
map(map)
{
if (map)
{
this.map.on('click', (e) =>
{
console.log(e.lnglat)
if (this.marker1 == null)
{
console.log("1")
this.marker1 = new AMap.Marker({
position: e.lnglat
})
this.map.add(this.marker1)
return;
}
if (this.marker1 != null)
{
this.marker2 = new AMap.Marker({
position: e.lnglat
})
this.map.add(this.marker2)
console.log(this.marker1.getPosition())
const position = this.marker1.getPosition()
const distance = position.distance(e.lnglat);
window.alert("距离:" + distance + "米");
//lnglat1向东1000m,向北500m的位置的经纬度
const lnglat3 = e.lnglat.offset(1000, 500)
const marker3 = new AMap.Marker({
position: lnglat3
})
this.map.add(marker3);
this.map.remove(this.marker1)
this.map.remove(this.marker2)
this.marker1 = null;
this.marker2 = null;
}
})
}
}
},
methods: {},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>像素点
概述
像素点(AMap.Pixel)由 x 和 y 两个分量组成,通常用来描述地图的容器坐标、地理像素坐标 (平面像素坐标)、点标记和信息窗体的的锚点等
使用
var offset = new AMap.Pixel(-16,-30);
var marker = new AMap.Marker({
offset:offset,
icon:'xxx.png',
});
map.add(marker);<template>
<div>
<div id="container"></div>
<button @click="add">添加像素点</button>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View8",
data()
{
return {
map: null,
}
},
methods: {
add()
{
const offset = new AMap.Pixel(-16, -30);
const marker = new AMap.Marker({
position: [113, 23],
offset: offset,
});
this.map.add(marker);
},
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>像素尺寸
概述
像素尺寸(AMap.Size)由width和height两个分量构成,通常用来描述具有一定大小的对象,比如地图的尺寸,图标的尺寸等
<template>
<div>
<div id="container"></div>
<button @click="add">添加点</button>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View8",
data()
{
return {
map: null,
}
},
methods: {
add()
{
const offset = new AMap.Pixel(-16, -30);
const marker = new AMap.Marker({
position: [113, 23],
offset: offset,
size: new AMap.Size(400, 500),
imageOffset: new AMap.Pixel(0, -60),
image: "https://webapi.amap.com/theme/v1.3/images/newpc/way_btn2.png",
});
this.map.add(marker);
},
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>地图
生命周期
生命周期,分为四个阶段:
- 创建地图对象
- 地图加载完成
- 地图运行阶段
- 销毁地图对象
在创建地图对象阶段,可通过传入地图初始化参数来设置地图的初始状态。例如:中心点、地图视图模式、地图样式等
地图加载完成后会触发complete事件,可以在这个事件中执行一些地图的其他操作,例如:添加覆盖物、绑定交互事件。根据需求,自动定位到某个城市或显示某些标记点等
map.on('complete', function(){
//地图图块加载完成后触发
});<template>
<div>
<div id="container"></div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>运行阶段指地图对象加载完成后,地图对象销毁前。在这个阶段,可以对地图进行各种交互操作,例如:缩放、平移、搜索地点等
不再需要地图或在页面切换时,应销毁地图对象以释放资源。调用map.destroy()方法可销毁地图。在调用map.destroy()方法之前,需要解绑地图上的事件。调用map.destroy()方法后,将地图对象赋值为null,再清除地图容器的 DOM 元素,避免内存泄漏和性能问题
//解绑地图的点击事件
map.off("click", clickHandler);
//销毁地图,并清空地图容器
map.destroy();
//地图对象赋值为null
map = null
//清除地图容器的 DOM 元素
document.getElementById("container").remove(); //"container" 为指定 DOM 元素的id地图状态
设置、获取地图中心点和级别
设置地图中心点setCenter()
setCenter(center, immediately, duration)方法有默认开启过渡动画效果,如果你想关闭动画或对动画有自定义需求,可以使用下面的参数:
center:地图中心点的位置坐标。
immediately:是否立即跳转到目标位置(设置为true,表示会立即跳转。为false时,则是在一段时间内平滑过渡到目标位置)。
duration:动画过渡时长,单位是毫秒(ms),这个参数可以用来控制动画过渡的速度(当immediately参数为false时,此参数才生效)。
<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="set">设置中心点</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
set()
{
this.map.setCenter([100 + Math.random() * 22, 22 + Math.random() * 20])
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>获取地图中心点getCenter()
getCenter()方法获取的是地图的实时中心点数据。由于setCenter()方法具有默认的过渡效果,因此如果在调用setCenter()方法后立即使用getCenter()方法来获取地图的中心点数据,可能不会得到预期的结果,因为地图可能还在进行中心点的过渡动画。为了解决这个问题,可以通过监听地图的moveend事件来获取地图中心点数据,这样就可以确保在地图中心点真正改变后再获取其数据
<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="set">设置中心点</button>
<button @click="get">得到中心点</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
set()
{
this.map.setCenter([100 + Math.random() * 22, 22 + Math.random() * 20])
},
get()
{
const center = this.map.getCenter()
console.log(center)
window.alert(center);
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>

设置地图缩放级别setZoom()
getZoom()方法获取的是地图的实时级别数据。由于getZoom()方法具有默认的过渡效果,因此如果在调用setZoom()方法后立即使用getZoom()方法来获取地图的级别,可能不会得到预期的结果,因为地图可能还在进行缩放的过渡动画。为了解决这个问题,可以通过监听地图的zoomend事件来获取地图级别数据,这样就可以确保在地图缩放级别真正改变后再获取其数据
<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="set">设置中心点</button>
<button @click="get">得到中心点</button>
<button @click="setZoom">设置缩放级别</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
set()
{
this.map.setCenter([100 + Math.random() * 22, 22 + Math.random() * 20])
},
get()
{
const center = this.map.getCenter()
console.log(center)
window.alert(center);
},
setZoom()
{
//3-20
this.map.setZoom(3 + parseInt(Math.random() * 15 + ''))
/*setInterval(() =>
{
this.map.setZoom(3 + parseInt(Math.random() * 15 + ''))
}, 100)*/
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>根据覆盖物范围调整视野
根据地图上覆盖物分布情况,使用setFitView()方法自动缩放地图到合适的视野级别,以确保所有覆盖物都在视野范围内
setFitView(overlays, immediately, avoid, maxZoom)方法接收4个参数,参数均可缺省。
- overlays:地图视野上展示的覆盖物。
- immediately:是否需要动画过程。
- avoid:上下左右的像素避让宽度。
- maxZoom:地图的最大缩放级别。
覆盖物/图层
添加覆盖物
覆盖物有多种类型,包括点标记、矢量图形、信息窗体等,均可以使用add()方法添加
add()方法也可以传入一个覆盖物数组,将点标记和矢量圆同时添加到地图上
map.add([marker, circle]);获取覆盖物
使用getAllOverlays(type)方法获取已经添加的覆盖物。其中type参数类型包括marker、circle、polyline、polygon,缺省时返回以上所有类型的所有覆盖物
//获取所有已经添加的覆盖物
map.getAllOverlays();
//只获取所有已经添加的 marker
map.getAllOverlays('marker');移除覆盖物
可以使用remove()方法移除覆盖物,参数可以为单个覆盖物对象或是一个包括多个覆盖物对象的数组。也可以使用clearMap()方法移除所有覆盖物
//单独移除点标记
map.remove(marker);
//同时移除点标记和矢量圆形
map.remove([marker,circle]);
//使用 clearMap 方法删除所有覆盖物
map.clearMap();添加图层
地图上可使用add()方法添加各类型的图层,如高德官方的卫星、路网图层,第三方或是自定义图层等
//构造官方卫星、路网图层
var layer1 = new AMap.TileLayer.Satellite(); //卫星图层
var layer2 = new AMap.TileLayer.RoadNet(); //路网图层
//添加到地图上
map.add(layer1);
map.add(layer2);设置图层
使用setLayers()方法设置图层,该方法可将多个图层一次性添加到地图上替代地图上原有图层
//构造官方卫星、路网图层
var layers = [new AMap.TileLayer.Satellite(), new AMap.TileLayer.RoadNet()];
//地图上设置图层
map.setLayers(layers);获取图层
可以通过getLayers()方法获取地图图层数据
移除图层
通过remove()方法移除地图图层
样式
设置地图样式的方式有两种:
- 在地图初始化时设置
- 地图创建之后使用 Map 对象的
setMapStyle()方法
官方地图样式:
| 参数值 | 说明 |
|---|---|
| "amap://styles/normal" | 标准 |
| "amap://styles/dark" | 幻影黑 |
| "amap://styles/light" | 月光银 |
| "amap://styles/whitesmoke" | 远山黛 |
| "amap://styles/fresh" | 草色青 |
| "amap://styles/grey" | 雅士灰 |
| "amap://styles/graffiti" | 涂鸦 |
| "amap://styles/macaron" | 马卡龙 |
| "amap://styles/blue" | 靛青蓝 |
| "amap://styles/darkblue" | 极夜蓝 |
| "amap://styles/wine" | 酱籽 |
<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="set">更改样式</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
styleList: ["amap://styles/normal",
"amap://styles/dark",
"amap://styles/light",
"amap://styles/whitesmoke",
"amap://styles/fresh",
"amap://styles/grey",
"amap://styles/graffiti",
"amap://styles/macaron",
"amap://styles/blue",
"amap://styles/darkblue",
"amap://styles/wine"],
styleIndex: 0,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
set()
{
if (this.styleIndex === this.styleList.length)
{
this.styleIndex = 0;
}
this.map.setMapStyle(this.styleList[this.styleIndex++]);
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 90vh;
}
</style>










点标记
默认点标记
AMap.Marker可以绘制点标记
AMap.Marker类型推荐在数据量为 500 以内时使用。若数据量大于 500 ,推荐使用AMap.LabelMarker,AMap.Marker相较于AMap.LabelMarker有着更加灵活的自定义配置如自定义 CSS 样式,点数量比较多的情况下AMap.LabelMarker可以带来更好的性能
方法列表:
- getTitle()
- getHeight()
- getIcon()
- setIcon(icon)
- getLabel()
- setLabel(opts)
- getClickable()
- setClickable(clickable)
- getDraggable()
- setDraggable(draggable)
- getTop()
- setTop(isTop)
- getCursor()
- setCursor(cursor)
- getExtData()
- setExtData(extData)
- remove()
- moveTo(targetPosition, opts)
- moveAlong(path, opts)
- startMove()
- stopMove()
- pauseMove()
- resumeMove()
- getMap()
- setMap(map)
- addTo(map)
- add(map)
- show()
- hide()
- getPosition()
- setPosition(position)
- getAnchor()
- setAnchor(anchor)
- getOffset()
- setOffset(offset)
- getAngle()
- setAngle(angle)
- getSize()
- setSize(size)
- getzIndex()
- setzIndex(zIndex)
- getOptions()
- getContent()
- setContent(content)
- getBounds()
添加
const marker = new AMap.Marker({
position: new AMap.LngLat(116.39, 39.9), //经纬度对象,也可以是经纬度构成的一维数组[116.39, 39.9]
title: "北京",
});
//将创建的点标记添加到已有的地图实例:
map.add(marker);如果一次性添加多个Marker实例
//多个点实例组成的数组
const markerList = [marker1, marker2, marker3];
map.add(markerList);<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="add">添加点标记</button>
<button @click="addMore(100)">添加100个点标记</button>
<button @click="addMore(1000)">添加1000个点标记</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
add()
{
const marker = new AMap.Marker({
position: [100 + Math.random() * 22, 22 + Math.random() * 20],
})
this.map.add(marker);
},
addMore(size)
{
const markerList = [];
for (let i = 0; i < size; i++)
{
const marker = new AMap.Marker({
position: [100 + Math.random() * 22, 22 + Math.random() * 20],
})
markerList.push(marker);
}
this.map.add(markerList)
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 88vh;
}
</style>
移除
删除已有Marker对象使用:map.remove(marker)
<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="add">添加点标记</button>
<button @click="remove">移除点标记</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
marker: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
add()
{
if (this.marker)
{
return;
}
const marker = new AMap.Marker({
position: [100 + Math.random() * 22, 22 + Math.random() * 20],
})
this.marker = marker;
this.map.add(marker);
},
remove()
{
if (this.marker)
{
this.map.remove(this.marker);
this.marker = null;
}
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 88vh;
}
</style>添加事件
事件列表:
| 序号 | 值 | 说明 |
|---|---|---|
| 1 | click | 鼠标左键单击事件 |
| 2 | dblclick | 鼠标左键双击事件 |
| 3 | rightclick | 鼠标右键单击事件 |
| 4 | mousemove | 鼠标移动 |
| 5 | mouseover | 鼠标移近点标记时触发事件 |
| 6 | mouseout | 鼠标移出点标记时触发事件 |
| 7 | mousedown | 鼠标在点标记上按下时触发事件 |
| 8 | mouseup | 鼠标在点标记上按下后抬起时触发事件 |
| 9 | dragstart | 开始拖拽点标记时触发事件 |
| 10 | dragging | 鼠标拖拽移动点标记时触发事件 |
| 11 | dragend | 点标记拖拽移动结束触发事件 |
| 12 | moving | 点标记在执行moveTo,moveAlong动画时触发事件,Object对象的格式是{passedPath:Array.}。其中passedPath为对象在moveAlong或者moveTo过程中走过的路径。 |
| 13 | moveend | 点标记执行moveTo动画结束时触发事件,也可以由moveAlong方法触发 |
| 14 | movealong | 点标记执行moveAlong动画一次后触发事件 |
| 15 | touchstart | 触摸开始时触发事件,仅适用移动设备 |
| 16 | touchmove | 触摸移动进行中时触发事件,仅适用移动设备 |
| 17 | touchend | 触摸结束时触发事件,仅适用移动设备 |
<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="add">添加点标记</button>
<button @click="remove">移除点标记</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
marker: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
add()
{
if (this.marker)
{
return;
}
const marker = new AMap.Marker({
position: [100 + Math.random() * 22, 22 + Math.random() * 20],
})
this.marker = marker;
this.map.add(marker);
marker.on('click', (e) =>
{
console.log(e)
window.alert("点击了坐标点:" + e.target.getPosition())
})
marker.on('rightclick',(e)=>
{
console.log("右键单击")
window.alert("右键点击了坐标点,可以拖拽:" + e.target.getPosition())
marker.setDraggable(true);
})
marker.on('dragend',(e)=>
{
window.alert("拖拽结束:" + e.target.getPosition())
marker.setDraggable(false);
})
},
remove()
{
if (this.marker)
{
this.map.remove(this.marker);
this.marker = null;
}
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 88vh;
}
</style>



自定义点标记
自定义图标
const marker = new AMap.Marker({
position: new AMap.LngLat(116.39, 39.9),
offset: new AMap.Pixel(-10, -10),
icon: "//vdata.amap.com/icons/b18/1/2.png", //添加 icon 图标 URL
title: "北京",
});
map.add(marker);设置了自定义图标可以使用offset偏移量调整显示位置
<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="add">添加点标记</button>
<button @click="remove">移除点标记</button>
<button @click="setIcon">设置图标</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
marker: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
add()
{
if (this.marker)
{
return;
}
const marker = new AMap.Marker({
position: [100 + Math.random() * 22, 22 + Math.random() * 20],
offset: new AMap.Pixel(-10, -10),
})
this.marker = marker;
this.map.add(marker);
},
remove()
{
if (this.marker)
{
this.map.remove(this.marker);
this.marker = null;
}
},
setIcon()
{
if (this.marker)
{
this.marker.setIcon("//vdata.amap.com/icons/b18/1/2.png");
}
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 88vh;
}
</style>
指定自定义内容
对于更加复杂的 marker 展示,我们可以使用 AMap.Marker的content 属性。content 属性取值为用户自定义的 DOM 节点或者 DOM 节点的 HTML 片段。content 属性比 icon 属性更加灵活,设置了 content 以后会覆盖 icon 属性
const content = `<div class="custom-content-marker">
<img src="//a.amap.com/jsapi_demos/static/demo-center/icons/dir-via-marker.png">
</div>`;
const marker = new AMap.Marker({
content: content, //自定义点标记覆盖物内容
position: [116.397428, 39.90923], //基点位置
offset: new AMap.Pixel(-13, -30), //相对于基点的偏移位置
});
map.add(marker);<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="add">添加点标记</button>
<button @click="remove">移除点标记</button>
<button @click="setContent">设置内容</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
marker: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
add()
{
if (this.marker)
{
return;
}
const marker = new AMap.Marker({
position: [100 + Math.random() * 22, 22 + Math.random() * 20],
})
this.marker = marker;
this.map.add(marker);
},
remove()
{
if (this.marker)
{
this.map.remove(this.marker);
this.marker = null;
}
},
setContent()
{
const content = `<div>
<img src="//a.amap.com/jsapi_demos/static/demo-center/icons/dir-via-marker.png">
测试</div>`;
if (this.marker)
{
this.marker.setContent(content);
}
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 88vh;
}
</style>
文本标记
文本标记AMap.Text,文本标记展示内容为纯文本。继承自AMap.Marker,具有AMap.Marker的大部分属性、方法和事件
参考手册
方法列表:
- getText
- setText
- setStyle
- getTitle()
- setTitle(title)
- getClickable()
- setClickable(clickable)
- getDraggable()
- getMap()
- setMap(map)
- addTo(map)
- add(map)
- show()
- hide()
- getPosition()
- setPosition(position)
- getAnchor()
- setAnchor(anchor)
- getOffset()
- setOffset(offset)
- getAngle()
- setAngle(angle)
- getzIndex()
- setzIndex(zIndex)
- getOptions()
- getBounds()
- moveTo(targetPosition, opts)
- moveAlong(path, opts)
- startMove()
- stopMove()
- pauseMove()
- resumeMove()
- setDraggable(draggable)
- getTop()
- setTop(isTop)
- getCursor()
- setCursor(cursor)
- getExtData()
- setExtData(extData)
- remove()
监听器:
| 序号 | 值 | 说明 |
|---|---|---|
| 1 | click | 鼠标左键单击事件 |
| 2 | dblclick | 鼠标左键双击事件 |
| 3 | rightclick | 鼠标右键单击事件 |
| 4 | mousemove | 鼠标移动 |
| 5 | mouseover | 鼠标移近点标记时触发事件 |
| 6 | mouseout | 鼠标移出点标记时触发事件 |
| 7 | mousedown | 鼠标在点标记上按下时触发事件 |
| 8 | mouseup | 鼠标在点标记上按下后抬起时触发事件 |
| 9 | dragstart | 开始拖拽点标记时触发事件 |
| 10 | dragging | 鼠标拖拽移动点标记时触发事件 |
| 11 | dragend | 点标记拖拽移动结束触发事件 |
| 12 | moving | 点标记在执行moveTo,moveAlong动画时触发事件,Object对象的格式是{passedPath:Array.}。其中passedPath为对象在moveAlong或者moveTo过程中走过的路径。 |
| 13 | moveend | 点标记执行moveTo动画结束时触发事件,也可以由moveAlong方法触发 |
| 14 | movealong | 点标记执行moveAlong动画一次后触发事件 |
| 15 | touchstart | 触摸开始时触发事件,仅适用移动设备 |
| 16 | touchmove | 触摸移动进行中时触发事件,仅适用移动设备 |
| 17 | touchend | 触摸结束时触发事件,仅适用移动设备 |
https://lbs.amap.com/api/javascript-api-v2/documentation#text
使用
<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="add">添加文本标记</button>
<button @click="remove">移除文本标记</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
marker: null,
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
add()
{
if (this.marker)
{
return;
}
const marker = new AMap.Text({
text: "纯文本标记", //标记显示的文本内容
anchor: "center", //设置文本标记锚点位置
draggable: true, //是否可拖拽
cursor: "pointer", //指定鼠标悬停时的鼠标样式。
angle: 10, //点标记的旋转角度
style: {
//设置文本样式,Object 同 css 样式表
"padding": ".75rem 1.25rem",
"margin-bottom": "1rem",
"border-radius": ".25rem",
"background-color": "white",
"width": "15rem",
"border-width": 0,
"box-shadow": "0 2px 6px 0 rgba(114, 124, 245, .5)",
"text-align": "center",
"font-size": "20px",
"color": "blue",
},
position: [100 + Math.random() * 22, 22 + Math.random() * 20], //点标记在地图上显示的位置
});
this.marker = marker;
this.map.add(marker);
},
remove()
{
if (this.marker)
{
this.map.remove(this.marker);
this.marker = null;
}
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 88vh;
}
</style>
海量标注
当需要展示海量点标记时,可以使用海量标注AMap.LabelMarker代替AMap.Marker。AMap.LabelMarker不仅可以绘制图标,还可以为图标添加文字信息,样式配置等
当LabelsLayer图层开启避让(collision:true)时,若两个LabelMarker标记发生重叠,rank值较高的LabelMarker标记将显示,而值较低的会被隐藏
方法列表:
- getName()
- setName(name)
- getPosition()
- setPosition(position)
- getZooms()
- setZooms(zooms)
- getOpacity()
- setOpacity(opacity)
- getzIndex()
- setzIndex(zIndex)
- getRank()
- setRank(rank)
- getText()
- setText(textOpts)
- getIcon()
- setIcon(iconOpts)
- getOptions()
- getExtData()
- setExtData(extData)
- setTop(isTop)
- getVisible()
- getCollision()
- show()
- hide()
- remove()
- moveTo(targetPosition, opts)
- moveAlong(path, opts)
- startMove()
- stopMove()
- pauseMove()
- resumeMove()
事件:
| 序号 | 值 | 说明 |
|---|---|---|
| 1 | click | 鼠标左键单击标注触发的事件 |
| 2 | mousemove | 鼠标在标注上移动触发的事件 |
| 3 | mouseover | 鼠标移进标注时触发事件 |
| 4 | mouseout | 鼠标移出标注时触发事件 |
| 5 | mousedown | 鼠标在标注上按下时触发事件 |
| 6 | mouseup | 鼠标在标注上按下后抬起时触发事件 |
| 7 | touchstart | 触摸开始时触发事件,仅适用移动设备 |
| 8 | touchmove | 触摸移动进行中时触发事件,仅适用移动设备 |
| 9 | touchend | 触摸结束时触发事件,仅适用移动设备 |
<template>
<div>
<div id="container"></div>
<div v-show="map!=null">
<button @click="add">添加点标记</button>
<button @click="addMore(100)">添加100个点标记</button>
<button @click="addMore(1000)">添加1000个点标记</button>
<button @click="addMore(10000)">添加10000个点标记</button>
</div>
</div>
</template>
<script>
import {initAMap, destroy} from '../utils/amapUtils'
export default {
name: "View1",
data()
{
return {
map: null,
icon: {
type: "image", //图标类型,现阶段只支持 image 类型
image: "https://a.amap.com/jsapi_demos/static/demo-center/marker/express2.png", //可访问的图片 URL
size: [64, 30], //图片尺寸
anchor: "center", //图片相对 position 的锚点,默认为 bottom-center
},
}
},
watch:
{
map(map)
{
console.log("map对象变化")
map.on('complete', function ()
{
//地图图块加载完成后触发
console.log("加载完成")
});
}
},
methods: {
add()
{
const labelsLayer = new AMap.LabelsLayer({
zooms: [3, 20],
zIndex: 1000,
collision: true, //该层内标注是否避让
allowCollision: true, //不同标注层之间是否避让
});
const labelMarker = new AMap.LabelMarker({
position: [100 + Math.random() * 22, 22 + Math.random() * 20],
name: "标注",
zIndex: 16,
rank: 1, //避让优先级
icon: this.icon,
})
labelsLayer.add(labelMarker);
this.map.add(labelsLayer);
},
addMore(size)
{
const labelsLayer = new AMap.LabelsLayer({
zooms: [3, 20],
zIndex: 1000,
collision: true, //该层内标注是否避让
allowCollision: true, //不同标注层之间是否避让
});
const markerList = [];
for (let i = 0; i < size; i++)
{
const labelMarker = new AMap.LabelMarker({
position: [100 + Math.random() * 22, 22 + Math.random() * 20],
name: "标注",
zIndex: 16,
rank: 1, //避让优先级
icon: this.icon,
})
markerList.push(labelMarker);
}
labelsLayer.add(markerList);
this.map.add(labelsLayer);
}
},
created()
{
console.log("初始化")
initAMap(this);
},
beforeDestroy()
{
console.log("销毁")
destroy(this.map)
},
}
</script>
<style scoped>
#container {
padding: 0px;
margin: 0px;
width: 100%;
height: 88vh;
}
</style>
海量点标记
当需要高效展示海量点标记,但不需要展示文本类信息时,推荐使用AMap.MassMarks
AMap.MassMarks并不是普通的覆盖物,它是由海量点组成的一个地图图层
MassMarks和LabelMarker的区别在于,MassMarks不支持添加文本,但能自动生成海量点图层,而LabelMarker则需要用户手动添加LabelsLayer海量点图层
版权声明
本站仅做备份收录,仅供研究与教学参考之用。
读者将信息用于其他用途的,全部法律及连带责任由读者自行承担,本站不承担任何责任。


缩放控件 AMap.ToolBar地图的放大和缩小
比例尺控件 AMap.Scale显示当前地图的比例尺
控制罗盘控件 AMap.ControlBar控制地图旋转和倾斜
定位控件AMap.Geolocation提供定位功能
鹰眼控件 AMap.HawkEye地图缩略图,标记当前展示区域
图层切换控件 AMap.MapType切换不同的地图类型






评论