1
0
mirror of https://github.com/bspeice/itcs4180 synced 2025-07-03 14:55:11 -04:00

Merge remote-tracking branch 'origin/master'

This commit is contained in:
tokugawa
2014-04-19 16:37:36 -04:00
6 changed files with 20 additions and 13 deletions

View File

@ -18,6 +18,7 @@ public class RestLocation implements Serializable{
private String riddle;
private double locationLong;
private double locationLat;
private String locationImageURL;
private String key;
public int getId() {
@ -57,6 +58,12 @@ public class RestLocation implements Serializable{
this.key = key;
}
public String getLocationImageURL() {
return locationImageURL;
}
public void setLocationImageURL(String locationImageURL) {
this.locationImageURL = locationImageURL;
}
public Location getLocation() {
android.location.Location mLocation = new android.location.Location("NinerFinderServer");
mLocation.setLatitude(getLocationLat());