diff options
Diffstat (limited to 'src/cgeo/geocaching/googlemaps/googleCacheOverlayItem.java')
| -rw-r--r-- | src/cgeo/geocaching/googlemaps/googleCacheOverlayItem.java | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/cgeo/geocaching/googlemaps/googleCacheOverlayItem.java b/src/cgeo/geocaching/googlemaps/googleCacheOverlayItem.java index 5f20dd4..4bc7671 100644 --- a/src/cgeo/geocaching/googlemaps/googleCacheOverlayItem.java +++ b/src/cgeo/geocaching/googlemaps/googleCacheOverlayItem.java @@ -7,22 +7,22 @@ import com.google.android.maps.GeoPoint; import com.google.android.maps.OverlayItem; public class googleCacheOverlayItem extends OverlayItem implements CacheOverlayItemImpl { - private String cacheType = null; - private cgCoord coord; - - public googleCacheOverlayItem(cgCoord coordinate, String type) { - super(new GeoPoint(coordinate.coords.getLatitudeE6(), coordinate.coords.getLongitudeE6()), coordinate.name, ""); - - this.cacheType = type; - this.coord = coordinate; - } - - public cgCoord getCoord() { - return coord; - } - - public String getType() { - return cacheType; - } + private String cacheType = null; + private cgCoord coord; + + public googleCacheOverlayItem(cgCoord coordinate, String type) { + super(new GeoPoint(coordinate.coords.getLatitudeE6(), coordinate.coords.getLongitudeE6()), coordinate.name, ""); + + this.cacheType = type; + this.coord = coordinate; + } + + public cgCoord getCoord() { + return coord; + } + + public String getType() { + return cacheType; + } } |
