Searched defs:altitude (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/location/java/android/location/
H A DLocation.java33 * and other information such as bearing, altitude and velocity.
110 * has no bearing, altitude, speed, accuracy or extras.
576 * True if this location has an altitude.
583 * Get the altitude if available, in meters above sea level.
585 * <p>If this location does not have an altitude then 0.0 is returned.
592 * Set the altitude, in meters above sea level.
596 public void setAltitude(double altitude) { argument
597 mAltitude = altitude;
602 * Remove the altitude from this location.
725 * velocity or altitude i
[all...]
/frameworks/base/services/java/com/android/server/location/
H A DGpsLocationProvider.java1019 private void reportLocation(int flags, double latitude, double longitude, double altitude, argument
1035 mLocation.setAltitude(altitude);
/frameworks/base/core/java/android/hardware/
H A DCamera.java1679 private static final String KEY_GPS_ALTITUDE = "gps-altitude";
2690 * Sets GPS altitude. This will be stored in JPEG EXIF header.
2692 * @param altitude GPS altitude in meters.
2694 public void setGpsAltitude(double altitude) { argument
2695 set(KEY_GPS_ALTITUDE, Double.toString(altitude));
2719 * Removes GPS latitude, longitude, altitude, and timestamp from the

Completed in 98 milliseconds