Point.fromSequence constructor

Point.fromSequence(
  1. CoordinateSequence? coordinates,
  2. GeometryFactory factory
)

@param coordinates contains the single coordinate on which to base this Point , or null to create the empty geometry.

Implementation

Point.fromSequence(CoordinateSequence? coordinates, GeometryFactory factory)
    : super(factory) {
  init(coordinates);
}