diff options
| author | Victoria Lease <violets@google.com> | 2012-11-29 11:09:03 -0800 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-11-29 11:09:26 -0800 |
| commit | 7023b3b0608e20bb881db9184c10ccfea7941332 (patch) | |
| tree | 342f4bc468ac5577ca72e25dc9ba75378b503024 | |
| parent | 5f958e9bfc793b3b653dfc88418bbd7745e633e1 (diff) | |
| parent | 3dffb8cb691ccd3187cec193223d53b32339ed8b (diff) | |
| download | frameworks_base-7023b3b0608e20bb881db9184c10ccfea7941332.zip frameworks_base-7023b3b0608e20bb881db9184c10ccfea7941332.tar.gz frameworks_base-7023b3b0608e20bb881db9184c10ccfea7941332.tar.bz2 | |
Merge "clarify Geofence.createCircle() param ranges" into jb-mr1.1-dev
| -rw-r--r-- | location/java/android/location/Geofence.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/location/java/android/location/Geofence.java b/location/java/android/location/Geofence.java index 5fef626..5de779a 100644 --- a/location/java/android/location/Geofence.java +++ b/location/java/android/location/Geofence.java @@ -38,8 +38,8 @@ public final class Geofence implements Parcelable { /** * Create a circular geofence (on a flat, horizontal plane). * - * @param latitude latitude in degrees - * @param longitude longitude in degrees + * @param latitude latitude in degrees, between -90 and +90 inclusive + * @param longitude longitude in degrees, between -180 and +180 inclusive * @param radius radius in meters * @return a new geofence * @throws IllegalArgumentException if any parameters are out of range |
