sitecore-search-with-google-map
Version:
A library for seamless integration of Sitecore Search with Google Maps in Next.js applications, enabling location-based searches with flexible UI options.
20 lines • 559 B
TypeScript
interface Store {
id: string;
latitude: number;
longitude: number;
}
interface coordinatesData {
lat: number;
lng: number;
}
type StoreArray = Store[];
declare const GoogleMap: ({ coordinates, storeCoordinates, setActiveMarker, activeMarker, mapStyles, mapIcon, }: {
coordinates: coordinatesData;
storeCoordinates: StoreArray;
setActiveMarker: any;
activeMarker: any;
mapStyles?: any;
mapIcon?: string;
}) => import("react/jsx-runtime").JSX.Element;
export default GoogleMap;
//# sourceMappingURL=GoogleMap.d.ts.map