我正在尝试通过从MapQuest高程配置文件API中获取高程值来获得点击位置的高程
https://developer.mapquest.com/documentation/open/elevation-api/elevation-profile/get/
但是我找不到一个参数,它不能获得仅一个点的高程而不是一条路线。我的意思是latLng而不是latLngCollection。
这是我的代码:
var myLocation = e.latlng;
console.log(myLocation);
fetch('http://open.mapquestapi.com/elevation/v1/profile?key=tHXSNAGXRx6LAoBNdgjjLycOhGqJalg7&shapeFormat=raw&latLngCollection='+myLocation)
.then(r => r.json())
.then(data => {
var elevation = data;
console.log(data);
})
有什么方法可以只获得一个点的高度吗?
答案 0 :(得分:0)