@venditan/address-lookup
v1.1.0
Published
Venditan Google Places API solution for handling address/postcode lookup
Downloads
23
Readme
Venditan Address Lookup
Google Places API solution for handling address/postcode lookup
Features
This package has the following features:
- Lookup addresses using Google Places API
- Complete partial postcodes using the postcodes.io API
- Logging lookup with VC for billing
How does it work?
Venditan Address Lookup jQuery plugin was written so it will do a lot of the heavy lifting for you.
$('#autocomplete').addressLookup();
Note: it is important to ensure the element it is called against is an input element or Google Places API will throw an error in your console.
The snippet above is enough to get the address lookup working, but you will want to view jquery.address-lookup.js
as it provides optional settings that we do override:
$('#autocomplete').addressLookup({
callback: function() {},
excludeTerms: [],
fields: [],
logLookup: true,
logURL: '/log_address_lookup',
postLog: function() {},
logData: {},
logPostVariable: 'postcode',
restrictions: {},
types: []
});
The full list of hooks are:
callback
- allows you to call a function to populate the place detail returnedpostLog
- if you wish to do something once we have logged the lookup with VC
The following settings are also available:
excludeTerms
- array of address line contents to cleanse from the addressfields
- sets the fields for the API to return with the Places Detail request API Reference and FieldslogLookup
- set whether to log the lookup with VC or notlogURL
- set the URL to post to so that VC can log the lookup requestlogPostVariable
- set the parameter name to use in the post request when logging the usagelogData
- set additional parameters, that you would like to pass tologURL
restrictions
- sets the restrictions for the API results, for example, limit to a country API Reference and Restrictionstypes
- sets the type of data to return, by default it will return residential and businesses API Reference and Types
How to get and use the Place Detail object
Within your callback function you will want to access the Place Detail object so you can populate your form with the address information.
To do this you need to simply do the following:
var obj_place = $('#autocomplete').addressLookup('get', 'place');
This will allow you to access the fields you requested in the following manner:
obj_place.address_components
- the address line object- This is the full address, broken down into an array of lines
obj_place.types
- the type(s) of the address returned based on the request performed, such asestablishment
,street_address
,postal_code
, etc.- You can use this to determine the type of address returned - such as choosing to show the Business name if it is an
establishment
or adding a house number/name field if it was apostal_code
request.
- You can use this to determine the type of address returned - such as choosing to show the Business name if it is an
obj_place.name
- the name of the address returned- Recommended that this is only used if the type of address returned is an
establishment
.
- Recommended that this is only used if the type of address returned is an