我在Google表格中有代码,该代码使用Google Maps API计算两个位置之间的距离。 我有一个Google API密钥,但不知道如何将其插入我的代码中进行身份验证。我没有客户编号。 有人可以帮忙吗?
function DISTANCE(origin, destination) {
var directions = Maps.newDirectionFinder()
.setOrigin(origin)
.setDestination(destination)
.getDirections();
return directions.routes[0].legs[0].distance.value;
}