我在谷歌电子表格上使用以下功能查找两个位置之间的交通数据或邮政编码的旅行时间。
输入参数将来自位置,目的地,到达时间(在早上6点或8点之间( 具有不同定义时间的相同脚本
根据我的谷歌脚本函数中的上述输入参数,它应该返回旅行时间,但我收到一个错误,即服务在一天内调用了太多次:路线。(第 40 行(。我正在使用下面的自定义函数,我的工作表中有 40 行。这是函数。有没有办法使其成为数组公式?这是否有助于避免不必要的电话?
function GetDuration(location1, location2, mode) {
//var arrive = new Date(new Date().getTime() + (10 * 60 * 60 * 1000));//arrive in ten hours from now
// var arrive=new Date(2019, 09, 07, 06);// 7th of September 2019 06:00 am
var arrive = new Date();
arrive.setHours(6,0,0,0);
var directions = Maps.newDirectionFinder().setArrive(arrive)
.setOrigin(location1)
.setDestination(location2)
.setMode(Maps.DirectionFinder.Mode[mode])
.getDirections();
// Get a script lock, because we're about to modify a shared resource.
var lock = LockService.getScriptLock();
// Wait for up to 30 seconds for other processes to finish.
lock.waitLock(20000);
Utilities.sleep(1000);
return directions.routes[0].legs[0].duration.text;
您应该查看距离矩阵服务。它允许在多个位置之间执行基本的路线搜索,它不会返回详细的路线,但它有关于路线的基本信息,我认为这对你来说已经足够了。
您需要记住,位置服务是付费的,您的配额取决于此。我提供的链接还包括有关此内容以及如何设置它的信息。