Copy of famous typeahead-addresspicker but using free and Open-Source place search service https://photon.komoot.io/.
Provides PhotonAddressEngine
, an implementation of suggestions engine Bloodhound (from corejs-typeahead).
Plugin provides convinient hooks if you wanna make other processing of suggested places, rather than only show them in the drop-down list of typeahead. For example, you can choose to pin markers on Leaflet map in suggested places while typing.
corejs-typeahead is maintained fork of original twitter typeahead. It's strongly recommended to switch on corejs-typeahead if you still use the old one.
Check out the demo.
Include jQuery
, corejs-typeahead
& typeahead-address-photon
on your page :
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/corejs-typeahead/dist/typeahead.bundle.js"></script>
<script src="node_modules/typeahead-address-photon/dist/bundle.js"></script>
Add text input for address :
<input id="inpAddress" type="text" placeholder="Enter address here..."></input>
Instanciate PhotonAddressEngine
and Typeahead
:
var engine = new PhotonAddressEngine();
$('#inpAddress').typeahead(null, {
source: engine.ttAdapter(),
displayKey: 'description'
});
PhotonAddressEngine
constructor accepts object with options. The following options can be provided :
url
- URL of the Photon API to use. Default: 'https://photon.komoot.io'limit
- limit number of results. Default: 5formatResult
- function to control the way geojson features are displayed in the results boxformatType
- function to control the way features types (amenity, school, etc.) are displayed in the default formatResult functionlat
,lon
- latitude and longitude to make search with priority to a geo positionlang
- preferred language
Instance of PhotonAddressEngine
can trigger two kind of events that allows you make your own processing of fetched OSM features.
addresspicker:selected
- triggered when user selects one of suggestions, has OSM feature corresponding to selected place as parameteraddresspicker:predictions
- triggered when suggestions are fetched for provided request, has all fetched OSM features as parameter
You can subscribe for those events as following :
$(engine).bind('addresspicker:selected', function (event, selectedPlace) {
// Process selected place here ...
});
$(engine).bind('addresspicker:predictions', function (event, suggestions) {
// Process all suggestions here ...
});
Reverse geocoding allows to fetch places by geographic coordinates rather than by text query. This feature can be usefull when working with Leaflet map. For example, user drags marker and address input is automatically updated with new place. To do reverse geocoding use method PhotonAddressEngine.reverseGeocode([lat, lon])
that accepts array with coordinates and triggers event addresspicker:selected
with first suggested result. Use it as following :
$(engine).bind('addresspicker:selected', function (event, selectedPlace) {
// Process selected place here ...
});
...
engine.reverseGeocode([ pos.lat, pos.lng ]);