Enum Mode
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
โหมด
Enum ที่แทนรูปแบบการเดินทางที่จะใช้เมื่อค้นหาเส้นทาง
หากต้องการเรียก enum คุณจะต้องเรียกคลาส ชื่อ และพร็อพเพอร์ตี้ระดับบนสุด เช่น
Maps.Mode.DRIVING
พร็อพเพอร์ตี้
พร็อพเพอร์ตี้ | ประเภท | คำอธิบาย |
DRIVING | Enum | เส้นทางการขับขี่ผ่านถนน |
WALKING | Enum | เส้นทางเดินเท้า ที่ทางเท้าและทางเท้า (ถ้ามี) |
BICYCLING | Enum | เส้นทางจักรยานผ่านทางจักรยานและถนนที่ต้องการ (หากมี) |
TRANSIT | Enum | เส้นทางขนส่งสาธารณะผ่านทางเส้นทางการขนส่งสาธารณะ (หากมี) คุณต้องตั้งค่าเพื่อใช้โหมดนี้
เวลาออกเดินทางหรือถึงจุดหมาย
// Log all available data for a public-transit trip.
const directions = Maps.newDirectionFinder()
.setOrigin('The Cloisters, New York, NY')
.setDestination('JFK airport, New York, NY')
.setMode(Maps.DirectionFinder.Mode.TRANSIT)
.setDepart(new Date())
.getDirections();
const route = directions.routes[0];
Logger.log(route);
|
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003e\u003ccode\u003eMaps.Mode\u003c/code\u003e is an enum used to specify the mode of transportation for directions.\u003c/p\u003e\n"],["\u003cp\u003eThe available modes are \u003ccode\u003eDRIVING\u003c/code\u003e, \u003ccode\u003eWALKING\u003c/code\u003e, \u003ccode\u003eBICYCLING\u003c/code\u003e, and \u003ccode\u003eTRANSIT\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eTRANSIT\u003c/code\u003e mode requires specifying either departure or arrival time.\u003c/p\u003e\n"],["\u003cp\u003eEach mode utilizes specific routes like roads, pedestrian paths, bicycle paths, or public transit routes as appropriate.\u003c/p\u003e\n"]]],["The `Mode` enum defines travel methods for finding directions. It includes `DRIVING`, `WALKING`, and `BICYCLING`, for road, pedestrian, and cycling routes respectively. `TRANSIT` offers public transit routes, requiring departure or arrival time specification. To use, reference as `Maps.Mode.PROPERTY`. An example is provided for setting a public transit route, by using `.setMode(Maps.DirectionFinder.Mode.TRANSIT)` and calling the `getDirections()` function.\n"],null,["# Enum Mode\n\nMode\n\nAn enum representing the mode of travel to use when finding directions.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nMaps.Mode.DRIVING`. \n\n### Properties\n\n| Property | Type | Description |\n|-------------|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `DRIVING` | `Enum` | Driving directions via roads. |\n| `WALKING` | `Enum` | Walking directions via pedestrian paths and sidewalks (where available). |\n| `BICYCLING` | `Enum` | Bicycling directions via bicycle paths and preferred streets (where available). |\n| `TRANSIT` | `Enum` | Transit directions via public transit routes (where available). This mode requires that you set either the departure or arrival time. ```javascript // Log all available data for a public-transit trip. const directions = Maps.newDirectionFinder() .setOrigin('The Cloisters, New York, NY') .setDestination('JFK airport, New York, NY') .setMode(Maps.DirectionFinder.Mode.TRANSIT) .setDepart(new Date()) .getDirections(); const route = directions.routes[0]; Logger.log(route); ``` |"]]