google-autocomplete-react-hook
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i google-autocomplete-react-hook

Weekly Downloads

2

Version

1.0.1

License

ISC

Unpacked Size

12.2 kB

Total Files

10

Last publish

Collaborators

  • earthspeed