Skip to content

A local picker made in react with support to Google Maps API

Notifications You must be signed in to change notification settings

Enegrecer/react-local-picker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-local-picker

React local picker with Google Maps API integration

Build Status Coverage Status

Demo

https://enegrecer.github.io/react-local-picker/

Install

npm install react-local-picker --save
// or
yarn add react-local-picker --save

Getting Started

Putting your google API script tag in index.html.

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

Usage Example

import React from 'react';
import { LocalPicker, GoogleMapsAdapter } from 'react-local-picker'

class SomePage extends React.Component {
  render() {
    return (
      <LocalPicker
        adapter={GoogleMapsAdapter}
        value={{ lat: 0, lng: 0 }}
        onChange={value => console.log(value)}
        inputPlaceholder="Search here aqui..."
        adapterConfig={{
          map: {
            zoom: 10
          },
          text: {
            loadingText: 'Loading...'
          }
        }}
      />
    )
  }
}

export default SomePage;

Component API

adapter : Object

Receives a Map Api Service. At the moment, the GoogleMapsAdapter is the only one available. But, if you want create other adapters to other services you are very welcome (read this section about write an adapter).

value : Object

A value receives an object with lat and lng attributes that indicates the initial marker position on the map.

onChange(value : Oject) : Function

Returns the new position of marker and closest address.

inputPlaceholder : String

The text that will be displayed in the input search.

adapterConfig : Object

Adapter settings. You can see below the correct configuration to your adapter.

map : Boolean

Displays the map or not. Default: true.

GoogleMapsAdapter Options

map : Object

It’s used to set some google maps api default options that can be seen here.

text : Object

It’s used to store the text configs.

text.loadingText : String

It’s displayed when the component is loading the full address from Google API.

Write an Adapter

To write an Adapter you just need to export an init function that will receive this props in sort. You can see how the GoogleMapsAdapter works.

  • value
  • mapContainer
  • searchInput
  • onChange
  • config

value : Object

A value receives an object with lat and lng attributes that indicates the initial marker position on the map.

mapContainer : Object

It is a DOM reference to the map container/wrapper.

searchInput : Object

It is a DOM reference to the search input.

onChange(value : Oject) : Function

Needs be called after any marker position changes and returns the new position.

config : Object

Any additional configuration that your adapter may need.

About

A local picker made in react with support to Google Maps API

Resources

Stars

Watchers

Forks

Packages

No packages published