FeatureTree

class FeatureTree(featureCollection: FeatureCollection?)

Constructors

Link copied to clipboard
constructor(featureCollection: FeatureCollection?)

Properties

Link copied to clipboard
var tree: RTree<Feature, Geometry?>?

Functions

Link copied to clipboard

getAllCollection returns a FeatureCollection containing all of the features from within the rtree.

Link copied to clipboard

getAllWithinTriangle returns a FeatureCollection containing all of the features with the triangle

Link copied to clipboard

For a given point, getContainingPolygons returns any features which contain it.

Link copied to clipboard

getNearbyCollection returns a FeatureCollection containing all of the features within distance of the location provided

Link copied to clipboard
fun getNearestCollection(location: LngLatAlt, distance: Double, maxCount: Int, initialCollection: FeatureCollection? = null): FeatureCollection

getNearestCollection returns a FeatureCollection containing the nearest members of the rtree that are also within distance.

Link copied to clipboard

getNearestCollectionWithinTriangle returns a FeatureCollection containing the nearest members of the rtree within the triangle provided

Link copied to clipboard
fun getNearestFeature(location: LngLatAlt, distance: Double = Double.POSITIVE_INFINITY): Feature?

getNearestFeature returns a Feature that is the nearest member of the rtree that is also within distance.

Link copied to clipboard

getNearestFeatureWithinTriangle returns a Feature that is the nearest member of the rtree within the triangle provided