equalsCoords method

  1. @override
bool equalsCoords(
  1. covariant Geometry other
)
override

True if this and other contain exactly same coordinate values (or both are empty) in the same order and with the same coordinate type.

Implementation

@override
bool equalsCoords(Geometry other) => testEqualsCoords<MultiLineString>(
      this,
      other,
      (mls1, mls2) => _testMultiLineStrings(
        mls1,
        mls2,
        (posArray1, posArray2) => posArray1.equalsCoords(posArray2),
      ),
    );