Enum Mode
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
मोड
निर्देश खोजते समय, यात्रा के मोड को दिखाने वाली सूची.
किसी 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);
|
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 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); ``` |"]]