getNearestCollection

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.

Parameters

location

Location to calculate distance from

distance

Maximum distance to return results for

maxCount

Maximum number of results to return

initialCollection

A FeatureCollection to add to the results. This must be sorted by distance and is useful when combining the results of searches in two separate trees e.g. POI and markers.