JavaScript Shell CSS
Latest commit 45f02c9 Jun 28, 2017 @vvo vvo committed on GitHub Merge pull request #412 from algolia/fix/bbox_demo
fix(demo): remove bbox demo search
Permalink
Failed to load latest commit information.
.github Create PULL_REQUEST_TEMPLATE.md Nov 14, 2016
__mocks__ chore(stack): upgrade whole stack Mar 27, 2017
docs Remove bbox demo search Jun 27, 2017
scripts release v1.4.13 May 26, 2017
src release v1.4.15 Jun 26, 2017
test feat(icons): new icons (busStop, trainStation, airport, townhall) (#284) Jul 17, 2016
.babelrc feat(npm): provide a nice and clean npm build (#237) Jun 20, 2016
.eslintignore chore(CI): let travis do the bundle install Mar 29, 2016
.eslintrc.js chore(stack): upgrade whole stack Mar 27, 2017
.gitignore test(lib): full unit test suite (#269) Jul 1, 2016
.ruby-version chore(stack): upgrade whole stack Mar 27, 2017
.travis.yml chore(deps): upgrade all deps Jun 26, 2017
CHANGELOG.md release v1.4.15 Jun 26, 2017
CONTRIBUTING.md fix(contributing): fix link Mar 31, 2017
LICENSE docs(misc): add LICENSE, fix links Apr 6, 2016
README.md release v1.4.15 Jun 26, 2017
autocompleteDataset.js chore(stack): upgrade whole stack Mar 27, 2017
demo.gif docs(README): demo.gif update Jun 15, 2016
header.png docs(README): add header image Jul 1, 2016
index.js chore(lint): use new eslint-config-algolia Jul 12, 2016
instantsearchWidget.js chore(lint): use new eslint-config-algolia Jul 12, 2016
package.json release v1.4.15 Jun 26, 2017
webpack.config.babel.js chore(stack): upgrade whole stack Mar 27, 2017
webpack.config.docs.babel.js chore(stack): upgrade whole stack Mar 27, 2017
webpack.config.npm.babel.js chore(stack): upgrade whole stack Mar 27, 2017
yarn.lock chore(deps): upgrade all deps Jun 26, 2017

README.md

header

Version Build Status License Downloads

Algolia Places provides a fast, distributed and easy way to use an address search autocomplete JavaScript library on your website.

See the website for more information.

Read the blog post introducing Algolia Places.

Fill the Google form to report any irrelevant results.

Demo

Watch more examples on the website.

demo

Getting started

To use Algolia Places, all you need is an <input> and some JavaScript code that will load and use the places.js library.

CDN <script>

Our JavaScript library is available on the jsDelivr CDN and also on cdnjs.

<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>

Version is the latest version.

Here's a small example using it:

<input type="search" id="address-input" placeholder="Where are we going?" />

<script>
  var placesAutocomplete = places({
    container: document.querySelector('#address-input')
  });
</script>

Using npm

Algolia Places is also available on npm.

Install the module:

npm install places.js --save

Put an <input> in your html page:

<input type="search" id="address-input" placeholder="Where are we going?" />

Initialize the places.js library:

var places = require('places.js');
var placesAutocomplete = places({
  container: document.querySelector('#address-input')
});

Full documentation is available on the Algolia Places website.

Contributing

Wanna contribute? Awesome, please read the contributing guide.