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
- Host: GitHub
- URL: https://github.com/torann/jquery.geocoder
- Owner: Torann
- License: other
- Created: 2017-02-02T20:17:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-29T20:41:16.000Z (almost 7 years ago)
- Last Synced: 2025-03-15T06:06:16.426Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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() {
//
}
});
```