@amicaldo/strapi-google-maps
Version:
A Google Maps custom field for Strapi, allowing you to pick a location.
8 lines (7 loc) • 350 B
TypeScript
import { Place } from '../../../../types';
export default function Search({ userCoords, currentAddress, onPlaceSelected, onAddressEdited, }: {
userCoords?: GeolocationCoordinates;
currentAddress: string;
onPlaceSelected: (place: Place) => void;
onAddressEdited: (address: string) => void;
}): import("react/jsx-runtime").JSX.Element;