add method

void add(
  1. List<RTreeDatum<E>> items
)

Adds all items to the rtree

Implementation

void add(List<RTreeDatum<E>> items) {
  if (items.length == 1) {
    _insert(items.first);
    return;
  }

  _load(items);
}