Enum Mode

模式

表示在查找路线时使用的出行方式的枚举。

如需调用枚举,您需要调用其父类、名称和属性。例如 Maps.Mode.DRIVING

属性

属性类型说明
DRIVINGEnum经由道路的驾车路线。
WALKINGEnum经由步道和人行道(如有)的步行路线。
BICYCLINGEnum经由自行车道和首选街道(如有)的骑车路线。
TRANSITEnum经由公共交通路线的公交路线(如果有)。此模式要求您设置 出发时间或到达时间
// Log all available data for a public-transit trip.
var directions = Maps.newDirectionFinder()
    .setOrigin('The Cloisters, New York, NY')
    .setDestination('JFK airport, New York, NY')
    .setMode(Maps.DirectionFinder.Mode.TRANSIT)
    .setDepart(new Date())
    .getDirections();
var route = directions.routes[0];
Logger.log(route);