从 Leaflet 中的 MapQuest API 获取一个点的高程
Fetching elevation of one point from MapQuest API in Leaflet
我正在尝试通过从 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);
})
有什么方法可以只得到一个点的高度吗?
我正在尝试通过从 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);
})
有什么方法可以只得到一个点的高度吗?