Back to project page coursera-android-001.
The source code is released under:
MIT License
If you think the Android project coursera-android-001 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package course.labs.locationlab; //w w w. ja va 2 s .co m import android.graphics.Bitmap; import android.location.Location; public class PlaceRecord { private String mFlagUrl; private String mCountryName; private String mPlaceName; private Bitmap mFlagBitmap; private Location mLocation; public PlaceRecord(String flagUrl, String country, String place) { this.mFlagUrl = flagUrl; this.mCountryName = country; this.mPlaceName = place; } public PlaceRecord(Location location) { mLocation = location; } public String getFlagUrl() { return mFlagUrl; } public void setFlagUrl(String flagUrl) { this.mFlagUrl = flagUrl; } public String getCountryName() { return mCountryName; } public void setCountryName(String country) { this.mCountryName = country; } public String getPlace() { return mPlaceName; } public void setPlace(String place) { this.mPlaceName = place; } public Bitmap getFlagBitmap() { return mFlagBitmap; } public void setFlagBitmap(Bitmap mFlagBitmap) { this.mFlagBitmap = mFlagBitmap; } public boolean intersects(Location location) { double tolerance = 1000; return (mLocation.distanceTo(location) <= tolerance); } public void setLocation(Location location) { mLocation = location; } public Location getLocation() { return mLocation; } @Override public String toString(){ return "Place: " + mPlaceName + " Country: " + mCountryName; } }