A React autosuggest for the Google Maps Places API.
npm install react-geosuggest-swA React autosuggest for the Google Maps Places API. You can also define your own suggests as defaults.
This is SpendWell Health's fork of the react-geosuggest project. It exists to add a few customized user interactions, as well as adding optional icon support.
As this component uses the Google Maps Places API to get suggests, you must include the Google Maps Places API in the of your HTML:
``html`
…
…
It is published to npm as 'react-geosuggest-sw'
The easiest way to use geosuggest is to install it from NPM and include it in your own React build process (using Browserify, Webpack, etc).
You can also use the standalone build by including dist/react-geosuggest.js in your page. If you use this, make sure you have already included React, and it is available as a global variable.
``
npm install react-geosuggest --save
The Geosuggest works out of the box by just including it. However, you can customize the behaviour with the properties noted below.
`
var Geosuggest = require('react-geosuggest');
`
#### placeholder
Type: StringSearch places
Default:
The input field will get this placeholder text.
#### initialValue
Type: String''
Default:
An initial value for the input, when you want to prefill the suggest.
#### className
Type: String''
Default:
Add an additional class to the geosuggest container.
#### location
Type: google.maps.LatLngnull
Default:
To get localized suggestions, define a location to bias the suggests.
#### radius
Type: Number0
Default:
The radius defines the area around the locaiton to use for biasing the suggests. It must be accompanied by a location parameter.
#### fixtures
Type: Array[]
Default:
An array with fixtures (defaults). Each fixture has to be an object with a label key in it. Optionally provide a location, but the Geosuggest will geocode the label if no location is provided.
#### googleMaps
Type: Objectgoogle.maps
Default:
In case you want to provide your own Google Maps object, pass it in as googleMaps. The default is the global google maps object.
#### onSuggestSelect
Type: Functionfunction(suggest) {}
Default:
Gets triggered when a suggest got selected. Only parameter is an object with data of the selected suggest. This data is available:
* label – Type String – The label nameplaceId
* – Type String – If it is a preset, equals the label. Else it is the Google Maps placeIDlocation
* – Type Object – The location containing lat and lnggmaps
– Type Object – Optional!* The complete response when there was a Google Maps geocode necessary (e.g. no location provided for presets). Check the Google Maps Reference for more information on it’s structure.
`
var React = require('react'),
Geosuggest = require('./src/Geosuggest.jsx');
var App = React.createClass({
/**
* Render the example app
*/
render: function() {
var fixtures = [
{label: 'Old Elbe Tunnel, Hamburg', location: {lat: 53.5459, lng: 9.966576}},
{label: 'Reeperbahn, Hamburg', location: {lat: 53.5495629, lng: 9.9625838}},
{label: 'Alster, Hamburg', location: {lat: 53.5610398, lng: 10.0259135}}
];
return (
/**
* When a suggest got selected
* @param {Object} suggest The suggest
*/
onSuggestSelect: function(suggest) {
console.log(suggest);
}
});
React.render(
`
This component uses BEM for namespacing the CSS classes. So styling should be easy and without conflicts. See the geosuggest.css for an example styling.
To build the examples locally, run:
``
npm install
npm start
Then open localhost:8000 in a browser.
To release & deploy, run the following
```
npm run release:patch|minor|major
The MIT License (MIT)
Copyright (c) 2015 Ubilabs
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.