createPointSeq method

Point createPointSeq(
  1. CoordinateSequence? coordinates
)

Creates a Point using the given CoordinateSequence; a null or empty CoordinateSequence will create an empty Point.

@param coordinates a CoordinateSequence (possibly empty), or null @return the created Point

Implementation

Point createPointSeq(CoordinateSequence? coordinates) {
  return new Point.fromSequence(coordinates, this);
}