Find features near a geographic point
Latitude (-90 to 90)
Longitude (-180 to 180)
Maximum results (default 20, max 100)
Search radius in meters (default 500, max 10000)
Bare GeoJSON FeatureCollection. Pagination metadata is returned in HTTP headers (X-Limit, X-Has-More, X-Next-Cursor, X-Next-Offset, Link).
GeoJSON coordinates array (nesting depth varies by geometry type)
Feature identifier (type/osm_id)
OpenStreetMap ID
ElementNearbyParams parameters = new() { Lat = 0, Lng = 0, }; var featureCollection = await client.Elements.Nearby(parameters); Console.WriteLine(featureCollection);