Answers:
MapQuest似乎是最好的选择,因为它们具有用于指示路线的基于URL的API,而Google Maps似乎是JavaScript库。
这在Google文档电子表格中对我有用。这个得到距离(英里):
=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值。