GeoJSON FeatureCollection containing multiple places.
Collection of place results from search or geocoding operations.
Type of individual place properties (defaults to CommonPlaceProps)
Type of collection-level properties
Optional
Bounding box that contains all the places, including their bounding boxes.
Array of place features.
const places: Places<SearchPlaceProps> = { type: 'FeatureCollection', features: [ { id: '1', type: 'Feature', geometry: {...}, properties: {...} }, { id: '2', type: 'Feature', geometry: {...}, properties: {...} } ]}; Copy
const places: Places<SearchPlaceProps> = { type: 'FeatureCollection', features: [ { id: '1', type: 'Feature', geometry: {...}, properties: {...} }, { id: '2', type: 'Feature', geometry: {...}, properties: {...} } ]};
GeoJSON FeatureCollection containing multiple places.
Collection of place results from search or geocoding operations.