Skip to content

Jquery plugin for Address lookup using DataFox API

License

Notifications You must be signed in to change notification settings

tomato-fox/data_address_jquery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2a40596 · May 7, 2017

History

18 Commits
Feb 25, 2017
May 7, 2017
Feb 25, 2017
Feb 25, 2017
May 7, 2017
Feb 25, 2017
May 7, 2017
May 7, 2017
May 7, 2017
Feb 25, 2017
Apr 17, 2017
May 7, 2017
Feb 25, 2017

Repository files navigation

AtomatoData AU address autocomplete.

www.atomatodata.com.au

API

  • $(selector).dataAddress(options);
    • Sets up autocomplete for input field(s).
    • options: An object literal which defines the settings to use for the autocomplete plugin. Available option settings listed below.

Example

This example will add auticomplete to field #address-lookup-field and onSelect field #streetNameFieldId will have be populated with street name.

  $('#address-lookup-field').dataAddress({
      serviceUrl: 'https://api.atomatodata.com.au/v1/geo/search/lookup',
      apiToken: '##################',
      useNA: true
      formFields: {
        streetName: '#streetNameFieldId'
      }
    })

Configuration Settings

  • serviceUrl: API endpoint
  • apiToken: API Access Token
  • useNA: Pass N/A to form field
  • formFields: List of fields to map values into

Callbacks

  • onSelect: function (suggestion) {}: Callback function invoked when user selects suggestion from the list. this inside callback refers to input HtmlElement.

formFields Dataset

  • address: Full address line
  • buildingName: Building name if available
  • flatNumber: Flat/Unit number if available
  • highlight: Highlighted result
  • latitude: Latitude
  • longitude: Longitude
  • localityName: Suburb name
  • lotId: Full Plan/Lot ID
  • lotNumber: Lookup Plan/Lot ID
  • postcode: Location Postcode
  • state: State Name
  • streetName: Street Name
  • streetSuffix: Street Suffix
  • streetType: Street Type

Instance Methods

Autocomplete instance has following methods:

  • setOptions(options): you may update any option at any time. Options are listed above.
  • clear: clears suggestion cache and current suggestions.
  • clearCache: clears suggestion cache.
  • disable: deactivate autocomplete.
  • enable: activates autocomplete if it was deactivated before.
  • hide: hides suggestions.
  • dispose: destroys autocomplete instance. All events are detached and suggestion containers removed.

License

Based on Ajax Autocomplete for jQuery which is freely distributable under the terms of an MIT-style license.

Copyright notice and permission notice shall be included in all copies or substantial portions of the Software.

Authors

Tomas Kirda / @tkirda

Alexander Tsirel / @noma4i

About

Jquery plugin for Address lookup using DataFox API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published