Code Monkey home page Code Monkey logo

react-google-places-component's Introduction

react-google-places-component

Usage

First install GooglePlaces component

$  npm install react-google-places-component

Add the following script tag to your HTML. Include your API key for "Google Places API Web Service".

<script src="https://maps.googleapis.com/maps/api/js?key=XXXXXXXXXX&libraries=places"></script>

Component API

<GooglePlaces
  options={{input: 'poetic systems'}}
  itemComponent={Place}
  itemProps={{onClick: onClickPlace}}
/>
options
AutocompletionRequest object specifications being sent through getPlacePredictions().
For more details:
https://developers.google.com/maps/documentation/javascript/places-autocomplete#place_autocomplete_service
https://developers.google.com/maps/documentation/javascript/reference#AutocompleteService
itemComponent
React component that will be rendered for each prediction.
itemProps
Pros that will be passed to each itemComponent.

Example

import React from 'react';
import GooglePlaces from 'react-google-places-component';

const Place = ({prediction, onClick}) => {
    return (
      <div onClick={onClick.bind(this, prediction.description)} className='item-component'>
        {prediction.description}
      </div>
    )
}

const Places = function({onClickPlace}) {
  return <GooglePlaces
    options={{input: 'poetic systems'}}
    itemComponent={Place}
    itemProps={{onClick: onClickPlace}} />
}

Resources

{
  description: "Poetic Systems, Bering Drive, Houston, TX, United States",
  id: "a578b600406c5b3e6db4350ef6d64018f1a8f02c",
  matched_substrings: [
    {
      length: 14,
      offset: 0
    }
  ],
  place_id: "ChIJGQ1R6v3DQIYR7AQTfQRxGbc",
  reference: "ClRHAAAABUZAZiM67fZ7sXVkMxAQ64HDkSbh2yrmT7lhcuZha4-5jSzXMxcxRgFgY5YaxJ52klhiVtvfOlIKpx4-ahObAogee7i0FaIh5yuZacmdEMgSENyJkU4LIjtmpDT_YO7L2EIaFPIIiyDwg11ttyCaatPWtd5FCKKf",
  terms: [
    {
      offset: 0,
      value: "Poetic Systems"
    },
    {
      offset: 16,
      value: "Bering Drive"
    },
    {
      offset: 30,
      value: "Houston"
    },
    {
      offset: 39,
      value: "TX"
    },
    {
      offset: 43,
      value: "United States"
    }
  ],
  types: [
    "establishment"
  ]
}

react-google-places-component's People

Contributors

chun-yang avatar noushka86 avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

l3r originalsin

react-google-places-component's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.