从Node.js上的Google地理编码API返回结果的方法如下:
axios
库,用于发送HTTP请求。可以使用以下命令进行安装:npm install axios
axios
库:const axios = require('axios');
axios
库发送HTTP GET请求到Google地理编码API,并传递你的API密钥和地址作为查询参数。以下是一个示例代码:const apiKey = 'YOUR_API_KEY';
const address = '1600 Amphitheatre Parkway, Mountain View, CA';
axios.get('https://maps.googleapis.com/maps/api/geocode/json', {
params: {
address: address,
key: apiKey
}
})
.then(response => {
// 处理API返回的结果
console.log(response.data);
})
.catch(error => {
// 处理请求错误
console.error(error);
});
请确保将YOUR_API_KEY
替换为你在Google Cloud平台上创建的API密钥。
response.data
中获取地理编码API的返回结果。你可以根据需要处理这些结果,例如提取地址的经纬度、解析地址组件等。领取专属 10元无门槛券
手把手带您无忧上云