Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
react-geosuggest-plus
Advanced tools
A React autosuggest for the Google Maps Places API. You can also define your own suggests as defaults which continue to appear even during active input. Originally forked from ubilabs-react-geosuggest.
Live demo: ubilabs.github.io/react-geosuggest
As this component uses the Google Maps Places API to get suggests, you must include the Google Maps Places API in the <head>
of your HTML:
<!DOCTYPE html>
<html>
<head>
…
<script src="https://maps.googleapis.com/maps/api/js?libraries=places"></script>
</head>
<body>
…
</body>
</html>
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).
npm install react-geosuggest-plus --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-plus');
<Geosuggest />
Type: Boolean
Default: false
Automatically activate the first suggestion as you type. If false, the exact term(s) in the input will be used when searching and may return a result not in the list of suggestions.
Type: LatLngBounds
Default: null
The bounds to use for biasing the suggests. If this is set, location
and radius
are ignored.
Type: Function
Default: () => (<button>Enter</button>)
The markup used for the submit button. This allows users to provide their own submit button. This is not rendered by default, unless the showButton
property is set to true
Type: String
Default: ''
Add an additional class to the geosuggest container.
Type: String
Default: null
Restricts predictions to the specified country (ISO 3166-1 Alpha-2 country code, case insensitive). E.g., us, br, au.
Type: Boolean
Default: false
Defines whether the input is disabled.
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.
You can also add a className
key to a fixture. This class will be applied to the fixture item.
Type: Function
Default: (suggest) => suggest.zipcode
This function is used as an accessor for 'fixtures'. Since fixtures do not have a label
property, this function is used to select the property that will be used instead. The default is the zipcode of the suggestion.
Type: Function
Default: (suggest) => suggest.description
Used to generate a custom label for a suggest. Only parameter is a suggest (google.maps.places.AutocompletePrediction). Check the Google Maps Reference for more information on it’s structure.
Type: Object
Default: google.maps
In case you want to provide your own Google Maps object, pass it in as googleMaps. The default is the global google maps object.
Type: Boolean
Default: false
Optionally disable the 'clear' button for a more minimal ui.
Type: Function
Default: () => {}
A function that returns custom markup to be used when there are no available suggestions.
Type: Function
Default: (event) => {}
Gets triggered when input field loses focus.
Type: Function
Default: (event) => {}
Gets triggered when input field changes the value
Type: Function
Default: (event) => {}
Gets triggered when the user 'clears' the input by pressing the clear button.
Type: Function
Default: (event) => {}
Gets triggered when the user clicks the input or the submit button.
Type: Function
Default: (event) => {}
Gets triggered when the user hits the 'enter' button but no suggestions are selected.
Type: Function
Default: function() {}
Gets triggered when the input field receives focus.
Type: Function
Default: function(suggest) {}
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 placeID
location
– Type Object
– The location containing lat
and lng
gmaps
– 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.Type: String
Default: Search places
The input field will get this placeholder text.
Type: Number
Default: 0
The radius defines the area around the location to use for biasing the suggests. It must be accompanied by a location
parameter.
Type: Component | Function
Default: <RecentListItem />
The component used to display 'fixtures', or 'recents'. This defaults to the internal <RecentListItem />
component.
Props
Type: Number
Default: 5
The max number of 'fixtures' to render.
Type: Boolean
Default: false
Whether or not to show the custom submit button.
Type: Function
Default: (suggest) => {}
If the function returns true then the suggest will not be included in the displayed results. Only parameter is an object with data of the selected suggest. (See above)
Type: Array
Default: null
Restricts the suggestions against the passed in types. If none are specified, all types are used. Consult the Google Docs for possible types.
It is possible to update the value of the input contained within the GeoSuggest component by calling the update
function with a new desired value
of the type String.
It is also possible to clear the value of the input contained within the GeoSuggest component by calling the clear
function.
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 (
<div>
<Geosuggest
placeholder="Start typing!"
initialValue="Hamburg"
fixtures={fixtures}
onSuggestSelect={this.onSuggestSelect}
location={new google.maps.LatLng(53.558572, 9.9278215)}
radius="20" />
</div>
)
},
/**
* When a suggest got selected
* @param {Object} suggest The suggest
*/
onSuggestSelect: function(suggest) {
console.log(suggest);
}
});
React.render(<App />, document.getElementById('app'));
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 katzki@ubilabs.net
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.
FAQs
A React autosuggest for the Google Maps Places API.
We found that react-geosuggest-plus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.