blob: f3841928b7124cf07af8f52e0cd14618efd6ff7d (
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
|
package cgeo.geocaching.apps.cache.navi;
import cgeo.geocaching.R;
import cgeo.geocaching.location.Geopoint;
import android.content.Intent;
/**
* Application for communication with the Pebble watch.
*
*/
class PebbleApp extends AbstractRadarApp {
private static final String INTENT = "com.webmajstr.pebble_gc.NAVIGATE_TO";
private static final String PACKAGE_NAME = "com.webmajstr.pebble_gc";
PebbleApp() {
super(getString(R.string.cache_menu_pebble), R.id.cache_app_pebble, INTENT, PACKAGE_NAME);
}
@Override
protected void addCoordinates(final Intent intent, final Geopoint coords) {
intent.putExtra(RADAR_EXTRA_LATITUDE, coords.getLatitude());
intent.putExtra(RADAR_EXTRA_LONGITUDE, coords.getLongitude());
}
}
|