// 初始化地图
init() {
AMapLoader.load({
key: "20e*****************fef3bcd2", // 申请好的Web端开发者Key
version: "2.0", // 指定要加载的 JSAPI 的版本
plugins: ["AMap.Geolocation", "AMap.Geocoder", "AMap.Marker"], // 需要使用的的插件列表
})
.then((AMap) => {
this.map = new AMap.Map("map", {
zoom: 13, //缩放比例
center: [120.306376, 31.588048],
viewMode: "2D",
terrain: true, //开启地形图
mapStyle: "amap://styles/dark",
});
})
.catch((e) => {
console.log(e, "地图加载失败");
});
},
//点击地图
clickLocation() {
this.map.on("click", this.clickMap);
},
clickMap(e) {
let arr = [e.lnglat.lng, e.lnglat.lat];
console.log(arr);
if (this.mark) {
this.map.removeControl(this.mark);
}
this.mark = new AMap.Marker({
position: arr,
});
this.geocoder = new AMap.Geocoder({
city: "全国",
radius: 500,
extensions: "all",
});
this.map.addControl(this.mark);
try {
this.geocoder.getAddress(arr, function (status, result) {
console.log(status, result);
});
} catch (error) {
console.log(error, "错误");
}
},
vue开发高德地图点击地图获取到了经纬度但是用逆地理编码获取信息失败返回INVALID_USER_SCODE
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- 崽崽的谷雨 2021-12-17 11:00关注
这个的得看 api 得说明文档 具体代表什么
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决评论 打赏 举报无用 25
悬赏问题
- ¥15 VS2022 C++的相关代码问题咨询
- ¥15 如果要做一个老年人平板有哪些需求
- ¥15 k8s生产配置推荐配置及部署方案
- ¥15 matlab提取运动物体的坐标
- ¥15 人大金仓下载,有人知道怎么解决吗
- ¥15 一个小问题,本人刚入门,哪位可以help
- ¥30 python安卓开发
- ¥15 使用R语言GD包一直不出结果
- ¥15 计算机微处理器与接口技术相关问题,求解答图片的这个问题,有多少个端口,端口地址和解答问题的方法和思路,不要AI作答
- ¥15 如何根据一个截图编写对应的HTML代码