I am using googlemaps.subgurim.net google map in my project. Geocode function working fine an till 8 march 2013. After I am facing problem in geocode function it returns code 610 and code status badkey. Here I am converting latitude and longitude to human readable address.now it was not working.. how to solve this...
GeoCode objAddress = new GeoCode();
objAddress = GMap1.getGeoCodeRequest(new GLatLng(12.55,77.55));
StringBuilder sb = new StringBuilder();
if (objAddress.valid)
{
sb.Append(objAddress.Placemark.address.ToString());
string address = sb.ToString();
lblPlace.Text = address;
}