距离我最近的加油站在什么位置 (距离我最近的菜鸟驿站)

长沙耍耍 04-11 阅读:45 评论:0
距离我最近的加油站在什么位置 (距离我最近的菜鸟驿站)

请输入您的地址或当前位置,我们会为您提供以下信息:

  • 距离您最近的加油站
  • 距离您最近的菜鸟驿站

正在加载结果...

javascript const form = document.getElementById('form'); const results = document.getElementById('results');form.addEventListener('submit', (event) => {event.preventDefault();const address = document.getElementById('address').value;if (!address) {alert('请输入您的地址或当前位置!');return;}results.innerHTML = '

正在加载结果...

';fetch(`${address}&radius=500&type=gas_station&key=YOUR_API_KEY`).then(response => response.json()).then(data => {const gasStation = data.results[0];fetch(`${address}&radius=500&type=convenience_store&key=YOUR_API_KEY`).then(response => response.json()).then(data => {const convenienceStore = data.results[0];results.innerHTML = `

距离您最近的加油站:

  • ${gasStation.name}
  • ${gasStation.vicinity}

距离您最近的菜鸟驿站:

  • ${convenienceStore.name}
  • ${convenienceStore.vicinity}
`;}).catch(error => {console.error('Error fetching convenience store data:', error);alert('无法获取菜鸟驿站信息!');});}).catch(error => {console.error('Error fetching gas station data:', error);alert('无法获取加油站信息!');}); });
版权声明

本文仅代表作者观点,不代表长沙桑拿立场。
本文系作者授权发表,未经许可,不得转载。