Use Cases:
Supported Geometries:
const response: GeometrySearchResponse = {
type: 'FeatureCollection',
features: [
{
type: 'Feature',
geometry: { type: 'Point', coordinates: [4.9, 52.3] },
properties: {
type: 'POI',
poi: { name: 'Restaurant', categories: ['RESTAURANT'] },
address: { streetName: 'Main Street' },
score: 0.95
}
}
],
summary: {
numResults: 1,
query: 'restaurant',
queryTime: 45
}
};
Response from a geometry search query.
Contains places found within or along a specified geometry (polygon or circle), along with summary information about the search results.