pub struct FindClosest<K> {
    geometries: BTreeMap<K, LineString>,
    quadtree: QuadTree<K>,
}
Expand description

A quad-tree to quickly find the closest points to some polylines.

Fields

geometries: BTreeMap<K, LineString>quadtree: QuadTree<K>

Implementations

Creates the quad-tree, limited to points contained in the boundary.

Add an object to the quadtree, remembering some key associated with the points. TODO This doesn’t properly handle single points, and will silently fail by never returning any matches.

For every object within some distance of a query point, return the (object’s key, point on the object’s polyline, distance away).

Finds the closest point on the existing geometry to the query pt.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.