points property

  1. @override
List<Location> points
override

In order to draw a path, the path class must also be passed two or more points. The Maps Static API will then connect the path along those points, in the specified order.

When Path.circle constructor is used, points will be calculated based on the radius, center and optional detail parameters.

Implementation

@override
List<Location> get points {
  throw UnimplementedError(
    "Currently points getter is not supported for predefined polylines.",
  );
}