Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Places | 5,393 | 348 | 35 | 8 months ago | 100 | May 26, 2020 | 2 | mit | JavaScript | |
:globe_with_meridians: Turn any <input> into an address autocomplete | ||||||||||
Swiftlocation | 2,997 | 55 | 2 years ago | 38 | December 24, 2020 | 24 | other | Swift | ||
🛰 CoreLocation Made Easy - Efficient & Easy Location Tracker, IP Location, Gecoder, Geofence, Autocomplete, Beacon Ranging, Broadcaster and Visits Monitoring | ||||||||||
Htautocompletetextfield | 1,058 | 39 | 5 years ago | 15 | March 24, 2015 | 12 | mit | Objective-C | ||
Jquery Addresspicker | 600 | 7 years ago | March 17, 2017 | 20 | CSS | |||||
JQuery UI widget : address autocomplete field by google maps V3 geocoding service | ||||||||||
Jquery.thailand.js | 579 | a year ago | 4 | wtfpl | HTML | |||||
ตัวช่วยกรอกที่อยู่ที่ดีที่สุดในไทย ไม่ต้องใช้ Server Side! | ||||||||||
Arautocompletetextview | 264 | 4 years ago | 2 | September 12, 2015 | 5 | mit | Objective-C | |||
ARAutocompleteTextView is a subclass of UITextView that automatically displays text suggestions in real-time. This is perfect for automatically suggesting the domain as a user types an email address, #hashtag or @alexruperez. | ||||||||||
Typeahead Addresspicker | 178 | 1 | 2 | 7 years ago | 2 | September 20, 2015 | 23 | mit | JavaScript | |
Address picker built with typeahead autocomplete from twitter | ||||||||||
Vue Places | 106 | 4 | 3 | 2 years ago | 13 | December 21, 2020 | 23 | mit | JavaScript | |
Places component is based on places.js for Vue 2.x. Turn any <input> into an address autocomplete. | ||||||||||
Vsgoogleautocomplete | 90 | 1 | 1 | 5 years ago | 1 | August 21, 2016 | 24 | mit | JavaScript | |
Angularjs autocomplete module using Google Maps JavaScript API v3 and embedded autocomplete validator | ||||||||||
React Thailand Address Typeahead | 73 | 3 years ago | 17 | February 19, 2021 | n,ull | JavaScript | ||||
jquery.Thailand.js in React |
Places is going away on May 31st 2022. Read our blog post announcement. Places is going away on May 31st 2022. Read our blog post announcement. Places is going away on May 31st 2022. Read our blog post announcement. Places is going away on May 31st 2022. Read our blog post announcement. Places is going away on May 31st 2022. Read our blog post announcement. Places is going away on May 31st 2022. Read our blog post announcement.
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.
Watch more examples on the website.
To use Algolia Places, all you need is an <input>
and some JavaScript code that will load
and use the places.js library.
<script>
Our JavaScript library is available on the jsDelivr CDN and also on cdnjs.
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
Here's a small example using it:
<input type="search" id="address-input" placeholder="Where are we going?" />
<script>
var placesAutocomplete = places({
appId: "<YOUR_PLACES_APP_ID>",
apiKey: "<YOUR_PLACES_API_KEY>",
container: document.querySelector('#address-input')
});
</script>
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({
appId: "<YOUR_PLACES_APP_ID>",
apiKey: "<YOUR_PLACES_API_KEY>",
container: document.querySelector('#address-input')
});
Full documentation is available on the Algolia Places website.
Wanna contribute? Awesome, please read the contributing guide.