An open API service indexing awesome lists of open source software.

https://github.com/torann/jquery.geocoder

Easily get information about the browser
https://github.com/torann/jquery.geocoder

Last synced: about 1 month ago
JSON representation

Easily get information about the browser

Awesome Lists containing this project

README

        

# jQuery Geocoder

Easily get information about the browser.

## Getting Started

You can install the plugin using Bower:

```bash
bower install jquery.geocoder
```

### Geocode

```js
var address = '124 Apple St New Haven, CT'

$.geo.geocode(address, {
success: function(data) {
console.log(data);
},
error: function() {
//
}
});
```

### Reverse Geocode
```js
var point = {
lat: 41.310726,
lng: -72.929916
};

$.geo.reverseGeocode(point, {
success: function(data) {
console.log(data);
},
error: function() {
//
}
});
```