A repository of over 1000 quality jQuery plugins

jQuery jQuery Automatic Geocoder

jQuery Automatic Geocoder is a jQuery Inputs plugin.

Created by Tristandunn

Automatically geocode and display a location entered in a text field.

Not what you're looking for? Click here to view more Inputs jQuery plugins

jQuery Automatic Geocoder

A jQuery plug-in to automatically geocode and display a location entered in a text field by a user.

Usage

  1. Include jQuery.
  2. Include the Google Maps JavaScript API Version 3.
  3. Include the plug-in.
  4. Set a width and height for the map using the class name, which is jquery-auto-geocoder-map by default.
  5. Call autoGeocoder on your location input(s).

Example

$(function() {
  $('#location').autoGeocoder();
});

See examples for more.

Options

className

The class name of the map container. Defaults to jquery-auto-geocoder-map.

position

Where to insert the map container. Supported options are after and before for after and before the element, or a custom jQuery selector for where the element should be appended. Defaults to after.

delay

The time, in milliseconds, to wait after a keypress before geocoding the location. Defaults to 500.

success.zoom

The zoom level to use after a successful geocoding. Supported options are any Google Maps zoom level, or auto to have it automatically determined. Defaults to auto.

initial

The initial options used to create the map. Accepts any options google.maps.Map accepts. The zoom and center options are also used to reset the map after an unsuccessful geocoding. See the bottom of jquery.auto-geocoder.js for all the defaults.

Credits

License

jquery-auto-geocoder uses the MIT license. See LICENSE for more details.



You might also like these other Inputs jQuery Plugins

  • easykeyjs

    A jQuery plugin that makes handling the keyboard really easy

  • jquery-flexdatalist

    Flexible input autocomplete/datalist plugin for jQuery

  • Multipicker

    Multipicker is jQuery plugin for selecting days, numbers or other elements, it supports multi selecting (like checkboxes) or single eleme...

License:

The MIT License