positionsOfFork static method

List<PolylinePosition> positionsOfFork(
  1. Polyline firstPolyline,
  2. PolylinePosition firstPolylinePosition,
  3. Polyline secondPolyline,
  4. PolylinePosition secondPolylinePosition,
)

The position of the fork on the road.

firstPolyline The first path of the fork. firstPolylinePosition The position of the first path. secondPolyline The second path of the fork. secondPolylinePosition The position of the second path.

Implementation

static core.List<mapkit_geometry_geometry.PolylinePosition> positionsOfFork(
    mapkit_geometry_geometry.Polyline firstPolyline,
    mapkit_geometry_geometry.PolylinePosition firstPolylinePosition,
    mapkit_geometry_geometry.Polyline secondPolyline,
    mapkit_geometry_geometry.PolylinePosition secondPolylinePosition) {
  return _positionsOfFork(
    firstPolyline,
    firstPolylinePosition,
    secondPolyline,
    secondPolylinePosition,
  );
}