aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/apps/cache/navi/GeopointNavigationApp.java
blob: fe4fd5d0a6e698c9f6033da8dc04fffd0254ea74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package cgeo.geocaching.apps.cache.navi;

import cgeo.geocaching.geopoint.Geopoint;

import android.app.Activity;

/**
 * interface for navigation to a coordinate. This one cannot be enabled/disabled.
 *
 */
public interface GeopointNavigationApp {
    void navigate(final Activity activity, final Geopoint coords);
}