-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
548c42d
commit 3348bba
Showing
9 changed files
with
126 additions
and
285 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
gpslibrary/src/main/java/org/ankit/gpslibrary/ADLocation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package org.ankit.gpslibrary; | ||
|
||
public class ADLocation { | ||
public double lat; | ||
public double longi; | ||
public String address; | ||
public String city; | ||
public String state; | ||
public String country; | ||
public String pincode; | ||
|
||
@Override | ||
public String toString() { | ||
return "ADLocation{" + | ||
"lat=" + lat + | ||
", longt=" + longi + | ||
", address='" + address + '\'' + | ||
", city='" + city + '\'' + | ||
", state='" + state + '\'' + | ||
", country='" + country + '\'' + | ||
", pincode='" + pincode + '\'' + | ||
'}'; | ||
} | ||
} |
106 changes: 0 additions & 106 deletions
106
gpslibrary/src/main/java/org/ankit/gpslibrary/IPTracker.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.