Options
All
  • Public
  • Public/Protected
  • All
Menu

Options for shipment location provider.

Hierarchy

  • FleetEngineShipmentLocationProviderOptions

Index

Properties

activePolylineCustomization?: null | PolylineOptions | ((a: ShipmentPolylineCustomizationFunctionParams) => void)

Customization applied to the active polyline. An active polyline corresponds to a portion of the route the vehicle is currently traversing through.

Use this field to specify custom styling (such as polyline color) and interactivity (such as click handling).

  • If a google.maps.PolylineOptions object is specified, the changes specified in it are applied to the polyline after the polyline has been created, overwriting its default options if they exist.
  • If a function is specified, it is invoked once when the polyline is created. (On this invocation, the isNew parameter in the function parameters object is set to true.) Additionally, this function is invoked when the polyline's coordinates change, or when the location provider receives data from Fleet Engine, regardless of whether the data corresponding to this polyline have changed.

    See google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams for a list of supplied parameters and their uses.

deliveryVehicleMarkerCustomization?: null | MarkerOptions | ((a: ShipmentMarkerCustomizationFunctionParams) => void)

Customization applied to the delivery vehicle marker.

Use this field to specify custom styling (such as marker icon) and interactivity (such as click handling).

  • If a google.maps.MarkerOptions object is specified, the changes specified in it are applied to the marker after the marker has been created, overwriting its default options if they exist.
  • If a function is specified, it is invoked once when the marker is created, before it is added to the map view. (On this invocation, the isNew parameter in the function parameters object is set to true.) Additionally, this function is invoked when the location provider receives data from Fleet Engine, regardless of whether the data corresponding to this marker have changed.

    See google.maps.journeySharing.ShipmentMarkerCustomizationFunctionParams for a list of supplied parameters and their uses.

destinationMarkerCustomization?: null | MarkerOptions | ((a: ShipmentMarkerCustomizationFunctionParams) => void)

Customization applied to the destination marker.

Use this field to specify custom styling (such as marker icon) and interactivity (such as click handling).

  • If a google.maps.MarkerOptions object is specified, the changes specified in it are applied to the marker after the marker has been created, overwriting its default options if they exist.
  • If a function is specified, it is invoked once when the marker is created, before it is added to the map view. (On this invocation, the isNew parameter in the function parameters object is set to true.) Additionally, this function is invoked when the location provider receives data from Fleet Engine, regardless of whether the data corresponding to this marker have changed.

    See google.maps.journeySharing.ShipmentMarkerCustomizationFunctionParams for a list of supplied parameters and their uses.

pollingIntervalMillis: null | number

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.

projectId: string

The consumer's project ID from Google Cloud Console.

remainingPolylineCustomization?: null | PolylineOptions | ((a: ShipmentPolylineCustomizationFunctionParams) => void)

Customization applied to the remaining polyline. A remaining polyline corresponds to a portion of the route the vehicle has not yet started traversing through.

Use this field to specify custom styling (such as polyline color) and interactivity (such as click handling).

  • If a google.maps.PolylineOptions object is specified, the changes specified in it are applied to the polyline after the polyline has been created, overwriting its default options if they exist.
  • If a function is specified, it is invoked once when the polyline is created. (On this invocation, the isNew parameter in the function parameters object is set to true.) Additionally, this function is invoked when the polyline's coordinates change, or when the location provider receives data from Fleet Engine, regardless of whether the data corresponding to this polyline have changed.

    See google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams for a list of supplied parameters and their uses.

takenPolylineCustomization?: null | PolylineOptions | ((a: ShipmentPolylineCustomizationFunctionParams) => void)

Customization applied to the taken polyline. A taken polyline corresponds to a portion of the route the vehicle has already traversed through.

Use this field to specify custom styling (such as polyline color) and interactivity (such as click handling).

  • If a google.maps.PolylineOptions object is specified, the changes specified in it are applied to the polyline after the polyline has been created, overwriting its default options if they exist.
  • If a function is specified, it is invoked once when the polyline is created. (On this invocation, the isNew parameter in the function parameters object is set to true.) Additionally, this function is invoked when the polyline's coordinates change, or when the location provider receives data from Fleet Engine, regardless of whether the data corresponding to this polyline have changed.

    See google.maps.journeySharing.ShipmentPolylineCustomizationFunctionParams for a list of supplied parameters and their uses.

trackingId: null | string

The tracking ID of the task to track immediately after the location provider is instantiated. If not specified, the location provider does not start tracking any task; use google.maps.journeySharing.FleetEngineShipmentLocationProvider.trackingId to set the tracking ID and begin tracking.

Methods

Generated using TypeDoc