3
我想寫一個簡單的腳本,以計算在谷歌表中兩個地點之間的旅行時間,通過考慮交通。谷歌地圖方向API採取交通帳戶
我正在使用Google Maps API的類DirectionFinder。
我設法計算出行所需的時間,但無論出發時間有多少,我的出行時間都保持不變。有什麼想法我做錯了什麼?是否有可能使用此課程考慮流量?我需要成爲一名商業用戶才能訪問此?
這裏是我的代碼:
function DrivingSeconds(origin, destination, Y, M, D, H, S) {
Utilities.sleep(1000);
var time= new Date(Y,M,D,H,S);
var directions = Maps.newDirectionFinder()
.setDepart(time)
.setOrigin(origin)
.setDestination(destination)
.setMode(Maps.DirectionFinder.Mode.DRIVING)
.getDirections();
return directions.routes[0].legs[0].duration.value;
}
感謝你可能有任何意見! :)