在Google Apps脚本“地图”类中使用API​​密钥

时间:2017-05-11 10:33:04

标签: google-maps google-maps-api-3 google-apps-script

我们目前正在开始使用和Google Apps。我一直在Stack Overflow中搜索和搜索,试图解决这个问题:

我们有一个Google电子表格,我们在其中计算路线中不同点之间的总距离。像这样:

Example-google-spreadsheet

在我的Apps脚本中,我有这段代码:

 var directionFinder = Maps.newDirectionFinder();
  directionFinder.setMode(Maps.DirectionFinder.Mode.DRIVING);
  directionFinder.setOrigin(origin);
  directionFinder.setDestination(destination);

我运行该功能,有时可以工作,有时则不工作。令我恼火的是,当我进入我的Google云端控制台时,在我的API管理中,我没有看到任何API使用 - 即使我启用了API也没有发生任何事情。

我知道我的问题与这些链接完全相同:

问题是,是否可以使用Maps方法而不使用UrlfetchApp来实现?目前正在使用Maps,我没有看到任何发生的事情,它可以随时工作。

我看到Maps中有一种方法,例如:

Maps.setAuthentication(clientId, signingKey)

我尝试将projectId和API密钥放在这里,但我认为它没有做任何事情。

0 个答案:

没有答案