Skip to content
HomePagesHomePages template kit

PoiFixture

A neighborhood point of interest a scenario carries, grouped by `category`.

A neighborhood point of interest a scenario carries, grouped by category. lat/lng are the venue’s real coordinates, driving live map marker placement — kept consistent with distance/distance_m, which state the same point’s walking distance from the property.

Import from @homepages/template-kit/fixtures.

export type PoiFixture = {
id: string;
category: "restaurant" | "park" | "transit" | "shopping" | "coffee" | "fitness" | "culture";
name: string;
place_id: string;
address: string;
distance: string;
distance_m: number;
lat: number;
lng: number;
url: string;
rating?: number;
review_count?: number;
type_label?: string;
website_uri?: string;
google_maps_uri?: string;
summary?: string;
photo?: PoiPhotoFixture;
};