TruckSpecifications constructor

TruckSpecifications([
  1. int? grossWeightInKilograms = null,
  2. int? currentWeightInKilograms = null,
  3. int? weightPerAxleInKilograms = null,
  4. WeightPerAxleGroup? weightPerAxleGroup = null,
  5. int? heightInCentimeters = null,
  6. int? widthInCentimeters = null,
  7. int? lengthInCentimeters = null,
  8. int? axleCount = null,
  9. int? trailerCount = null,
  10. TruckType truckType = TruckType.straight,
  11. bool isTruckLight = false,
  12. int? payloadCapacityInKilograms = null,
  13. int? trailerAxleCount = null,
])

Creates a new instance.

  • grossWeightInKilograms Gross truck weight, including trailers and shipped goods when loaded at capacity, specified in kilograms. The provided value must be greater than or equal to 0. If unspecified, it will default to TruckSpecifications.currentWeightInKilograms. By default, it is not set.
  • currentWeightInKilograms Current truck weight, including trailers and shipped goods currently loaded, specified in kilograms. The provided value must be greater than or equal to 0. If unspecified, it will default to TruckSpecifications.grossWeightInKilograms. By default, it is not set.
  • weightPerAxleInKilograms Heaviest weight per axle, regardless of axle type or axle group. It is evaluated against all axle weight restrictions, including single axle and tandem axle weight restrictions. The provided value must be greater or equal to 0. By default, it is not set. Note: weight_per_axle_in_kilograms and weight_per_axle_group are incompatible. When available for your edition, if both attributes are set, during online RoutingEngine an sdk.routing.RoutingError.INVALID_PARAMETER error is generated. Otherwise, when offline RoutingEngine is in place, both parameters are evaluated and the maximum value between them will be used.
  • weightPerAxleGroup Allows specification of axle weights in a more fine-grained way than weight_per_axle_in_kilograms. This is relevant in countries with signs and regulations that specify different limits for different axle groups, like the USA and Sweden. By default is not set. Note: weight_per_axle_in_kilograms and weight_per_axle_group are incompatible. When available for your edition, if both attributes are set, during online RoutingEngine an sdk.routing.RoutingError.INVALID_PARAMETER error is generated. Otherwise, when offline RoutingEngine is in place, both parameters are evaluated and the maximum value between them will be used.
  • heightInCentimeters Truck height in centimeters. The provided value must be in the range [0, 5000]. By default, it is not set.
  • widthInCentimeters Truck width in centimeters. The provided value must be in the range [0, 5000]. By default, it is not set.
  • lengthInCentimeters Truck length in centimeters. The provided value must be in the range [0, 30000]. By default, it is not set.
  • axleCount Defines total number of axles in the vehicle. The provided value must be greater than or equal to 2. By default, it is not set. Route calculation: When not set, possible axle count restrictions will not be taken into consideration. Rendering sdk.mapview.TruckProfile: When set, truck restriction icons for an axle count greater than TruckSpecifications.axleCount will not be displayed. When specifying TruckSpecifications.trailerAxleCount, then TruckSpecifications.axleCount is required and must be greater than TruckSpecifications.trailerAxleCount.
  • trailerCount Defines number of trailers attached to the vehicle. The provided value must be in the range [0, 255]. By default, it is not set. When specifying TruckSpecifications.trailerAxleCount, then TruckSpecifications.trailerCount is required and must be greater than 0.
  • truckType Defines the type of truck. By default, it is TruckType.straight. Rendering sdk.mapview.TruckProfile: TruckSpecifications.truckType is ignored and has no effect.
  • isTruckLight A flag indicating whether the truck is light enough to be classified more as a car than a truck in Japan. The flag should not be set to true in other countries than Japan. The flag defaults to false.

A light truck exempts from many legal restrictions for normal trucks in Japan, for example, which streets the vehicle can access, which access restrictions apply, and which speed limits are applicable. Restrictions related to the dimensions of the truck, or its cargo may still apply and setting this flag will not always overwrite these settings: Make sure to not exceed the specifications that classify a truck as light.

In Japan, for light trucks the same restrictions apply as for cars. Therefore, when the flag is set to true, you will get, for example, the same speed limits as for cars. Make sure to set the flag only to true, when a vehicle matches the classification for light trucks according to the vehicle regulations in Japan.

When TruckSpecifications are set as part of MapContentSettings, then this flag will be ignored and has no effect.

Note: This flag and the concept of light trucks are supported only in Japan as beta and are considered to be experimental in other regions. Therefore, for now, it is recommended to use this flag only in Japan. Note that this is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases with a deprecation process.

Implementation

TruckSpecifications([int? grossWeightInKilograms = null, int? currentWeightInKilograms = null, int? weightPerAxleInKilograms = null, WeightPerAxleGroup? weightPerAxleGroup = null, int? heightInCentimeters = null, int? widthInCentimeters = null, int? lengthInCentimeters = null, int? axleCount = null, int? trailerCount = null, TruckType truckType = TruckType.straight, bool isTruckLight = false, int? payloadCapacityInKilograms = null, int? trailerAxleCount = null])
  : grossWeightInKilograms = grossWeightInKilograms, currentWeightInKilograms = currentWeightInKilograms, weightPerAxleInKilograms = weightPerAxleInKilograms, weightPerAxleGroup = weightPerAxleGroup ?? null, heightInCentimeters = heightInCentimeters, widthInCentimeters = widthInCentimeters, lengthInCentimeters = lengthInCentimeters, axleCount = axleCount, trailerCount = trailerCount, truckType = truckType, isTruckLight = isTruckLight, payloadCapacityInKilograms = payloadCapacityInKilograms, trailerAxleCount = trailerAxleCount;