Isoline constructor

Isoline(
  1. IsolineRangeType rangeType,
  2. double rangeValue,
  3. MapMatchedCoordinates center,
  4. List<GeoPolygon> polygons,
)

Constructs an isoline instance.

This instance is provided by the CalculateIsolineCallback.

  • rangeType Specifies the range type of the provided Isoline.Isoline().rangeValue list.

  • rangeValue A list of range values. At least one value must be set.

  • center The center of the isoline.

  • polygons A list of polygons that belong to this isoline. At least one value must be set.

Implementation

factory Isoline(IsolineRangeType rangeType, double rangeValue, MapMatchedCoordinates center, List<GeoPolygon> polygons) => $prototype.make(rangeType, rangeValue, center, polygons);