便利贴--3{js高德地图获取路线路径点--官方方法一定要加个安全密钥..这个不用}
高德api获取路径对接
axios
.get("https://restapi.amap.com/v3/direction/walking", {
params: {
origin: `${Number(startLngLat[0]).toFixed(6)},${Number(
startLngLat[1]
).toFixed(6)}`,
destination: `${Number(endLngLat[0]).toFixed(6)},${Number(
endLngLat[1]
).toFixed(6)}`,
key: "***************************",
output: "json",
},
})
.then((res) => {
that.doWork(res.data.route.paths[0].steps);
});
直接用key就好了 不需要官网说的安全密钥!
最后,发现了,是不同的应用
如果是web服务就不用密钥 ,开发文档中有说明用法
下面这个就要