RouteOffset constructor

RouteOffset(
  1. int sectionIndex,
  2. double offsetInMeters
)

Creates a new instance.

  • sectionIndex Index of the corresponding route Section. The start of the section indicates the start of the offset.
  • offsetInMeters Offset from the start of the indexed Section to the specified location along the route. The maximum possible offset is limited by the length of the section and cannot exceed it.

Implementation

RouteOffset(this.sectionIndex, this.offsetInMeters);