Re: [android-developers] Geopoint range of values

2011-11-21 Thread TreKing
On Mon, Nov 21, 2011 at 12:02 AM, AndroidCoder wrote: > Is the range for geopoint latitude is from -80 to + 80? Try reading the documentation for GeoPoint. It will blow your mind. - TreKing

[android-developers] Geopoint range of values

2011-11-21 Thread AndroidCoder
Latitude values range from -90 to + 90. I am simply creating a GeoPoint (Google APIs 2.1 update 1) with int lat = 8500; int lon = 17900; GeoPoint p = new GeoPoint(lat,lon); But p.getLatitudeE6(); is returning 8000 ? Longitude is correct. Any ideas what's going wrong here. Is the range