[android-developers] Unable to get Latitude and Longitude of Address using Geocoder

2011-10-27 Thread Nireesha Yarlagadda
Hi, This the code im using. Geocoder coder = new Geocoder(getBaseContext(), Locale.ENGLISH); List foundGeocode = null; /* find the addresses by using getFromLocationName() method with the given address*/ tr

Re: [android-developers] Unable to get Latitude and Longitude of Address using Geocoder

2011-10-28 Thread MANISH RAJ
HI, I was facing the same problem then i used the following code to convert Addresses to Latitude and Longitude. In your case you are using Locale.ENGLISH. I think use default Locale that may resolve this Geocoder geocoder = new Geocoder(this, Locale.getDefault()); try { Li

Re: [android-developers] Unable to get Latitude and Longitude of Address using Geocoder

2011-10-28 Thread Nireesha Yarlagadda
Thanks manish On Fri, Oct 28, 2011 at 1:23 PM, MANISH RAJ wrote: > HI, > I was facing the same problem then i used the following code to convert > Addresses to Latitude and Longitude. In your case you are using > Locale.ENGLISH. I think use default Locale that may resolve this > > > Geocoder g