Home
last modified time | relevance | path

Searched refs:latitude (Results 1 – 9 of 9) sorted by relevance

/development/samples/browseable/SpeedTracker/Shared/src/com.example.android.wearable.speedtracker.common/
DLocationEntry.java27 public double latitude; field in LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) { in LocationEntry() argument
34 this.latitude = latitude; in LocationEntry()
/development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
DSimpleGeofence.java42 public SimpleGeofence(String geofenceId, double latitude, double longitude, float radius, in SimpleGeofence() argument
46 this.mLatitude = latitude; in SimpleGeofence()
/development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/db/
DUpdateService.java83 double latitude = dataMap.getDouble(Constants.KEY_LATITUDE); in onDataChanged() local
88 new LocationEntry(calendar, latitude, longitude)); in onDataChanged()
DLocationDbHelper.java94 values.put(COLUMN_NAME_LATITUDE, entry.latitude); in insert()
/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/provider/
DTouristAttractions.java117 .setCircularRegion(cityLatLng.latitude, cityLatLng.longitude, TRIGGER_RADIUS) in getGeofenceList()
/development/samples/browseable/SpeedTracker/Wearable/src/com.example.android.wearable.speedtracker/
DWearableMainActivity.java407 private void addLocationEntry(double latitude, double longitude) { in addLocationEntry() argument
412 LocationEntry entry = new LocationEntry(mCalendar, latitude, longitude); in addLocationEntry()
415 putDataMapRequest.getDataMap().putDouble(Constants.KEY_LATITUDE, entry.latitude); in addLocationEntry()
/development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/
DPhoneMainActivity.java113 LatLng latLng = new LatLng(entry.latitude, entry.longitude); in showTrack()
/development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/
DUtils.java96 editor.putLong(PREFERENCES_LAT, Double.doubleToRawLongBits(location.latitude)); in storeLocation()
/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/service/
DUtilityService.java458 Constants.EXTRA_LOCATION_LAT, attraction.location.latitude); in sendDataToWearable()