GeoJSON Feature representing a place.
A place is a Point feature with comprehensive location information including address, coordinates, and metadata.
Type of the place properties (defaults to CommonPlaceProps)
Optional
Bounding box that contains the place.
Unique identifier for this place.
Required string ID (stricter than GeoJSON Feature's optional id).
const place: Place<SearchPlaceProps> = { type: 'Feature', id: 'place-123', geometry: { type: 'Point', coordinates: [4.9041, 52.3676] }, properties: { type: 'POI', address: { freeformAddress: 'Dam, Amsterdam', ... }, poi: { name: 'Dam Square', ... }, score: 0.95 }}; Copy
const place: Place<SearchPlaceProps> = { type: 'Feature', id: 'place-123', geometry: { type: 'Point', coordinates: [4.9041, 52.3676] }, properties: { type: 'POI', address: { freeformAddress: 'Dam, Amsterdam', ... }, poi: { name: 'Dam Square', ... }, score: 0.95 }};
GeoJSON Feature representing a place.
A place is a Point feature with comprehensive location information including address, coordinates, and metadata.