Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

parse-google-place

ajoslin6.5kMIT1.3.0

Parse a google place into a normal US address format

parse, google, place

readme

parse-google-place Build Status

Parse a google place into a normal US address format

Install

$ npm install --save parse-google-place

Usage

var parseGooglePlace = require('parse-google-place')

parseGooglePlace(googlePlace)
//=> address

API

parseGooglePlace(place) -> address

place

Required Type: object

A place from the google places API. See ./fixture.js for an example.

Returns address

"Address" is an object with the following keys:

  • streetNumber
  • streetName
  • address
  • city
  • county
  • stateShort
  • stateLong
  • countryShort
  • countryLong
  • zipCode

Any properties not found in the place result will default to empty string.

License

MIT © Andrew Joslin