This endpoint takes a layer name and a list of geometries in GeoJSON format, then returns the closest asset UUID for each geometry.
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Example of query geometries in GeoJSON format:
{ "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ -97.1537, 49.9027 ], "type": "Point" } }, { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ -97.0141, 49.9002 ], "type": "Point" } } ] }
The result is a GeoJSON containing the location of the closest assets to each geometry with the name of layer, UUID, and query point in the properties of assets. Example:
{ "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "layer": "Panorama:SS_Winnipeg_2025", "uuid": "5726b4ae940211f0868402c2cf9eab5f", "query_point": [ -97.1537, 49.9027 ] }, "geometry": { "type": "Point", "coordinates": [ -97.1537, 49.9026 ] } }, { "type": "Feature", "properties": { "layer": "Panorama:SS_Winnipeg_2025", "uuid": "fca74f38773311f086980ebd45b4b023", "query_point": [ -97.0141, 49.9002 ] }, "geometry": { "type": "Point", "coordinates": [ -97.0136, 49.8999 ] } } ] }