MultiPoint.withFactory constructor

MultiPoint.withFactory(
  1. List<Point>? points,
  2. GeometryFactory factory
)

@param points the Points for this MultiPoint , or null or an empty array to create the empty geometry. Elements may be empty Points, but not nulls.

Implementation

MultiPoint.withFactory(List<Point>? points, GeometryFactory factory)
    : super.withFactory(points, factory);