Skip to content

Commit

Permalink
Renamed package
Browse files Browse the repository at this point in the history
  • Loading branch information
guiassemany committed Feb 26, 2016
1 parent a598520 commit a227ddb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Assemany AngularJS Reverse Geocode
AngularJS Reverse Geocode
=======================
This is a simple directive to handle reverse geocode using google maps.

### Demo
[Codepen](http://codepen.io/assemany/pen/JXPqBv)

### How to Installation
### How to Install

Bower: `bower install assemany-angular-reverse-geocode`
Bower: `bower install angular-reverse-geocode`
You can also simply download the file assemany-angular-reverse-geocode.js and import it to your page.

After this, you should add 'AssemanyAngularReverseGeocode' as a dependency for your project.
After this, you should add 'AngularReverseGeocode' as a dependency for your project.
```javascript
angular.module('myApplication', ['AssemanyAngularReverseGeocode']);
angular.module('myApplication', ['AngularReverseGeocode']);
```

** Important: You should also have the google maps api script on your page! **
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/**
* Assemany AngularJS reverse geocoding directive
* AngularJS reverse geocoding directive
* @author Guilherme Assemany <[email protected]> (http://assemany.com)
* @version 1.0.0
*/
(function () {
angular.module('AssemanyAngularReverseGeocode', [])
angular.module('AngularReverseGeocode', [])
.directive('reverseGeocode', function () {
return {
restrict: 'E',
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "assemany-angular-reverse-geocode",
"name": "angular-reverse-geocode",
"version": "1.0.0",
"authors": [
"Guilherme Assemany <[email protected]> (http://assemany.com)"
],
"description": "AngularJS directive for google maps reverse GeoCode",
"main": "assemany-angular-reverse-geocode.js",
"main": "angular-reverse-geocode.js",
"keywords": [
"AngularJS",
"Reverse Geocode",
Expand Down

0 comments on commit a227ddb

Please sign in to comment.