trackingTransportProfile property

  1. @Deprecated("Will be removed in v4.28.0. Use `NavigatorInterface.trackingTransportSpecification` instead.")
TransportProfile? trackingTransportProfile

Defines the transport profile for the Navigator, when no route is present. Properly setting the transport profile optimizes the navigation experience, and improves resource consumption. For example, a TransportProfile can be defined with a VehicleProfile. A vehicle profile can have several parameters such as VehicleType to set the source of information describing the vehicle. The default is a VehicleType.car profile.

Currently used members of TransportProfile

  • VehicleType: Sets the transport mode.
  • From vehicleProfile:
    • grossWeightInKilograms: Required for truck related speed information.
    • heightInCentimeters: Required for truck related speed information.
    • widthInCentimeters: Additional truck definition for more specific truck speed information.
    • lengthInCentimeters: Additional truck definition for more specific truck speed information. Gets the transport profile for the Navigator, when no route is present.

Implementation

@Deprecated("Will be removed in v4.28.0. Use `NavigatorInterface.trackingTransportSpecification` instead.")
TransportProfile? get trackingTransportProfile;
  1. @Deprecated("Will be removed in v4.28.0. Use `NavigatorInterface.trackingTransportSpecification` instead.")
void trackingTransportProfile=(TransportProfile? value)

Defines the transport profile for the Navigator, when no route is present. Properly setting the transport profile optimizes the navigation experience, and improves resource consumption. For example, a TransportProfile can be defined with a VehicleProfile. A vehicle profile can have several parameters such as VehicleType to set the source of information describing the vehicle. The default is a VehicleType.car profile.

Currently used members of TransportProfile

  • VehicleType: Sets the transport mode.
  • From vehicleProfile:
    • grossWeightInKilograms: Required for truck related speed information.
    • heightInCentimeters: Required for truck related speed information.
    • widthInCentimeters: Additional truck definition for more specific truck speed information.
    • lengthInCentimeters: Additional truck definition for more specific truck speed information. Sets the transport profile for the Navigator, when no route is present.

Implementation

@Deprecated("Will be removed in v4.28.0. Use `NavigatorInterface.trackingTransportSpecification` instead.")
set trackingTransportProfile(TransportProfile? value);