blob: 56bc40ccbdf242c86207d8e3fbed4e41d174b16e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package cgeo.geocaching.maps.google;
import cgeo.geocaching.maps.interfaces.GeoPointImpl;
import com.google.android.maps.GeoPoint;
public class GoogleGeoPoint extends GeoPoint implements GeoPointImpl {
public GoogleGeoPoint(int latitudeE6, int longitudeE6) {
super(latitudeE6, longitudeE6);
}
}
|