pathForModification property

List<ILatLong> get pathForModification

Returns the underlying list of points for modification.

Accessing this property clears the cached bounding box and closed status, as they will need to be recalculated.

Implementation

List<ILatLong> get pathForModification {
  _closed = null;
  _boundingBox = null;
  return _path;
}