Get a Maps Demo Key: Try out select Maps JavaScript API and Places UI Kit features at no cost with a Maps Demo Key—no billing information required.

Authentication

[フレーム]

AuthToken interface

google.maps.journeySharing.AuthToken interface

The auth token returned by the token fetcher.

Properties

expiresInSeconds
Type: number
The expiration time in seconds. A token expires in this amount of time after fetching.
token
Type: string
The token.

AuthTokenContext interface

google.maps.journeySharing.AuthTokenContext interface

Contains additional information needed to mint JSON Web Tokens.

Properties

deliveryVehicleId
optional
Type: string optional
When provided, the minted token should have a private DeliveryVehicleId claim for the provided deliveryVehicleId.
taskId
optional
Type: string optional
When provided, the minted token should have a private TaskId claim for the provided taskId.
trackingId
optional
Type: string optional
When provided, the minted token should have a private TrackingId claim for the provided trackingId.
tripId
optional
Type: string optional
When provided, the minted token should have a private TripId claim for the provided tripId.
vehicleId
optional
Type: string optional
When provided, the minted token should have a private VehicleId claim for the provided vehicleId.

AuthTokenFetcher typedef

google.maps.journeySharing.AuthTokenFetcher typedef

Auth token function type.

A function that accepts a AuthTokenFetcherOptions object, containing details about the auth token to be minted. This function should mint the token and return a AuthToken containing the token and its expiry time.

function(AuthTokenFetcherOptions): Promise<AuthToken>

AuthTokenFetcherOptions interface

google.maps.journeySharing.AuthTokenFetcherOptions interface

Options for the auth token fetcher.

Properties

context
The auth token context. IDs specified in the context should be added to the request sent to the JSON Web Token minting endpoint.
serviceType
The Fleet Engine service type.

FleetEngineServiceType constants

google.maps.journeySharing.FleetEngineServiceType constants
library "journeySharing"

Types of Fleet Engine services.

These constants are also usable as strings. In TypeScript, the string literals are defined by the FleetEngineServiceTypeString type.

const{FleetEngineServiceType}=awaitgoogle.maps.importLibrary("journeySharing");

Constants

DELIVERY_VEHICLE_SERVICE Fleet Engine service used to access delivery vehicles.
TASK_SERVICE Fleet Engine service used to access task information.
TRIP_SERVICE Fleet Engine service used to access trip information.
UNKNOWN_SERVICE Unknown Fleet Engine service.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2026年09月01日 UTC.