Fields Summary |
---|
public static final int | ACCURACY_FINEReturned by {@link #getQuality} when requesting the most accurate locations available.
This may be up to 1 meter accuracy, although this is implementation dependent. |
public static final int | ACCURACY_BLOCKReturned by {@link #getQuality} when requesting "block" level accuracy.
Block level accuracy is considered to be about 100 meter accuracy,
although this is implementation dependent. Using a coarse accuracy
such as this often consumes less power. |
public static final int | ACCURACY_CITYReturned by {@link #getQuality} when requesting "city" level accuracy.
City level accuracy is considered to be about 10km accuracy,
although this is implementation dependent. Using a coarse accuracy
such as this often consumes less power. |
public static final int | POWER_NONEReturned by {@link #getQuality} when requiring no direct power impact (passive locations).
This location request will not trigger any active location requests,
but will receive locations triggered by other applications. Your application
will not receive any direct power blame for location work. |
public static final int | POWER_LOWReturned by {@link #getQuality} when requesting low power impact.
This location request will avoid high power location work where
possible. |
public static final int | POWER_HIGHReturned by {@link #getQuality} when allowing high power consumption for location.
This location request will allow high power location work. |
private final android.location.LocationRequest | delegate |
Methods Summary |
---|
public long | getFastestInterval()Get the fastest interval of this request, in milliseconds.
The system will never provide location updates faster
than the minimum of {@link #getFastestInterval} and
{@link #getInterval}.
return delegate.getFastestInterval();
|
public long | getInterval()Get the desired interval of this request, in milliseconds.
return delegate.getInterval();
|
public int | getQuality()Get the quality of the request.
return delegate.getQuality();
|
public float | getSmallestDisplacement()Get the minimum distance between location updates, in meters.
return delegate.getSmallestDisplacement();
|
public java.lang.String | toString()
return delegate.toString();
|