답변:
Google지도 는 자바 스크립트 라이브러리 인 것처럼 길 찾기에 URL 기반 API가 있으므로 MapQuest 가 가장 좋은 방법 인 것 같습니다 .
이것은 Google Docs Spreadsheet 에서 나를 위해 일했습니다 . 이것은 거리 (마일)를 얻습니다.
=importXML("http://mapquestapi.com/directions/v1/route?key=YOUR_KEY_HERE&outFormat=xml&from=" & A2 & "&to=" & B2,"//response/route/distance")
그리고 이것은 시간을 얻습니다 ( hh : mm : ss 형식 ) :
=importXML("http://mapquestapi.com/directions/v1/route?key=YOUR_KEY_HERE&outFormat=xml&from=" & A2 & "&to=" & B2,"//response/route/formattedTime")
여기서 A2 는 출발지이고 B2 는 목적지입니다.
MapQuest 에서 API 키를 가져 와서 YOUR_KEY_HERE 값을 바꿔야 합니다.