enum을 호출하려면 상위 클래스, 이름, 속성을 호출합니다. 예를 들면
Maps.Mode.DRIVING입니다.
속성
속성
유형
설명
DRIVING
Enum
도로를 경유하는 운전경로
WALKING
Enum
보행경로와 인도를 경유하는 도보 경로 (지원되는 경우)
BICYCLING
Enum
자전거 전용 도로 및 선호하는 거리를 경유하는 자전거 경로 (제공되는 경우)
TRANSIT
Enum
대중교통 경로를 경유하는 대중교통 경로 (지원되는 경우) 이 모드를 사용하려면
출발 또는 도착 시간을 나타냅니다
//Logallavailabledataforapublic-transittrip.vardirections=Maps.newDirectionFinder().setOrigin('The Cloisters, New York, NY').setDestination('JFK airport, New York, NY').setMode(Maps.DirectionFinder.Mode.TRANSIT).setDepart(newDate()).getDirections();varroute=directions.routes[0];Logger.log(route);
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-08-21(UTC)"],[[["`Maps.Mode` is an enum used to specify the mode of transportation for directions."],["The available modes are `DRIVING`, `WALKING`, `BICYCLING`, and `TRANSIT`."],["`TRANSIT` mode requires specifying either departure or arrival time."],["Each mode utilizes specific routes like roads, pedestrian paths, bicycle paths, or public transit routes as appropriate."]]],[]]