Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleMapsPlacesV1TransitStop

import type { GoogleMapsPlacesV1TransitStop } from "https://googleapis.deno.dev/v1/places:v1.ts";

Represents a transit stop within a station. This is a specific location where passengers board and alight transit vehicles, such as a platform or bus bay. This is distinct from a Departure, which is an event of a vehicle leaving a stop at a specific time.

interface GoogleMapsPlacesV1TransitStop {
id?: string;
location?: GoogleTypeLatLng;
platformCode?: GoogleTypeLocalizedText;
wheelchairAccessibleEntrance?: boolean;
}

§Properties

§

The name of the stop.

§
id?: string
[src]

The id of the transit stop that can be used to uniquely identify the stop among other transit stops in the same transit station. This identifier is not guaranteed to be stable across different responses.

§

The stop's location.

§

The platform code represented by this stop. It can be formatted in any way. (eg: "2", "Platform 2", "2-4", or "1x").

§

The verbatim text written on the signboard for this platform, e.g. "Towards Central" or "East side & Brooklyn". When platform_code is absent, this field is potentially the only identifier for the platform; however, both platform_code and signage_text may be set simultaneously.

§

Human readable identifier of the stop, used by transit agencies to distinguish stops with the same name.

§
wheelchairAccessibleEntrance?: boolean
[src]

Wheelchair accessibility of this stop. This field indicates whether there is an accessible path from outside the station to the stop. It does not indicate whether it is possible to board a vehicle from the stop.