positionsOfFork static method
List<PolylinePosition>
positionsOfFork(
- Polyline firstPolyline,
- PolylinePosition firstPolylinePosition,
- Polyline secondPolyline,
- 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,
);
}