aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/apps/cache/navi/GoogleNavigationApp.java
blob: 7258e1130cff87001fd9b77e8e8a3661d12a2e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package cgeo.geocaching.apps.cache.navi;

import cgeo.geocaching.IGeoData;
import cgeo.geocaching.R;
import cgeo.geocaching.Settings;
import cgeo.geocaching.cgeoapplication;
import cgeo.geocaching.activity.ActivityMixin;
import cgeo.geocaching.geopoint.Geopoint;
import cgeo.geocaching.utils.Log;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;

class GoogleNavigationApp extends AbstractPointNavigationApp {

    GoogleNavigationApp() {
        super(getString(R.string.cache_menu_tbt), null);
    }

    @Override
    public boolean isInstalled() {
        return true;
    }

    private static boolean navigateToCoordinates(Activity activity, final Geopoint coords) {
        IGeoData geo = cgeoapplication.getInstance().currentGeo();
        final Geopoint coordsNow = geo == null ? null : geo.getCoords();

        // Google Navigation
        if (Settings.isUseGoogleNavigation()) {
            try {
                activity.startActivity(new Intent(Intent.ACTION_VIEW, Uri
                        .parse("google.navigation:ll=" + coords.getLatitude() + ","
                                + coords.getLongitude())));

                return true;
            } catch (Exception e) {
                // nothing
            }
        }

        // Google Maps Directions
        try {
            if (coordsNow != null) {
                activity.startActivity(new Intent(Intent.ACTION_VIEW, Uri
                        .parse("http://maps.google.com/maps?f=d&saddr="
                                + coordsNow.getLatitude() + "," + coordsNow.getLongitude() + "&daddr="
                                + coords.getLatitude() + "," + coords.getLongitude())));
            } else {
                activity.startActivity(new Intent(Intent.ACTION_VIEW, Uri
                        .parse("http://maps.google.com/maps?f=d&daddr="
                                + coords.getLatitude() + "," + coords.getLongitude())));
            }

            return true;
        } catch (Exception e) {
            // nothing
        }

        Log.i("cgBase.runNavigation: No navigation application available.");
        return false;
    }

    @Override
    public void navigate(Activity activity, Geopoint coords) {
        if (!navigateToCoordinates(activity, coords)) {
            ActivityMixin.showToast(activity, getString(R.string.err_navigation_no));
        }
    }
}