1.0.1 • Published 5 years ago

google-autocomplete-react-hook v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

Google Autocomplete React Hook

A react hook wrapper for the google maps location autocomplete api. See also Google's places autocomplete docs.

Installation

npm i google-autocomplete-react-hook
yarn add google-autocomplete-react-hook

Usage

The hook accepts an API key and will return a function that you can use to make autocompletion requests to Google's API.

The returned function accepts an AutocompletionRequest and returns a promise-wrapped list of AutocompletePrediction.

Basic Example

import useGoogleLocationAutocomplete from "google-autocomplete-react-hook";

const MyComponent: React.FC = () => {
  const locationAutocomplete = useGoogleLocationAutocomplete("mygoogleapikey");
  locationAutocomplete({input: "Calif"}).then(console.log);
}

Tests

npm run test