Available only in the v=beta channel: https://goo.gle/3oAthT3.
Vehicle Location Provider.
Access by calling const {FleetEngineVehicleLocationProvider} = await google.maps.importLibrary("journeySharing")
. See
https://developers.google.com/maps/documentation/javascript/libraries.
Options to pass to the location provider.
True if this location provider is polling. Read only.
Minimum time between fetching location updates in milliseconds. If it
takes longer than pollingIntervalMillis
to fetch a location
update, the next location update is not started until the current one
finishes.
Setting this value to 0, Infinity, or a negative value
disables automatic location updates. A new location update is fetched
once if the tracking ID parameter (for example, the shipment tracking ID
of the shipment location provider), or a filtering option (for example,
viewport bounds or attribute filters for fleet location providers)
changes.
The default, and minimum, polling interval is 5000
milliseconds. If you set the polling interval to a lower positive value,
5000 is stored and used.
This Field is read-only. Threshold for stale vehicle location. If the last updated location for the vehicle is older than this threshold, the vehicle will not be displayed.
ID for the vehicle that this location provider observes. Set this field to track a vehicle.
Adds a google.maps.MapsEventListener for an event fired by this location provider. Returns an identifier for this listener that can be used with google.maps.event.removeListener.
The name of the event to listen for.
The event handler.
Polyline customization function that colors the active polyline according to its speed reading. Specify this function as the google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.activePolylineCustomization to render a traffic-aware polyline for the active polyline.
The parameters provided to the polyline customization function.
Polyline customization function that colors the remaining polyline according to its speed reading. Specify this function as the google.maps.journeySharing.FleetEngineVehicleLocationProviderOptions.remainingPolylineCustomization to render a traffic-aware polyline for the remaining polyline.
The parameters provided to the polyline customization function.
Generated using TypeDoc
Available only in the v=beta channel: https://goo.gle/3oAthT3.
Vehicle Location Provider.
Access by calling
const {FleetEngineVehicleLocationProvider} = await google.maps.importLibrary("journeySharing")
. See https://developers.google.com/maps/documentation/javascript/libraries.