MultiPoint constructor

MultiPoint(
  1. List<Point> points,
  2. PrecisionModel precisionModel,
  3. int SRID
)

Constructs a MultiPoint.

@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. @param precisionModel the specification of the grid of allowable points for this MultiPoint @param SRID the ID of the Spatial Reference System used by this MultiPoint @deprecated Use GeometryFactory instead

Implementation

MultiPoint(List<Point> points, PrecisionModel precisionModel, int SRID)
    : super.withFactory(points,
          new GeometryFactory.withPrecisionModelSrid(precisionModel, SRID));