{
string url = "http://maps.google.com/maps/api/geocode/xml?address=" + Location.Text + "&sensor=false";
WebRequest request = WebRequest.Create(url);
using (WebResponse response = (HttpWebResponse)request.GetResponse())
{
using (StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8))
{
DataSet dsResult = new DataSet();
dsResult.ReadXml(reader);
DataTable dtCoordinates = new DataTable();
dtCoordinates.Columns.AddRange(new DataColumn[4]
{
new DataColumn("Id", typeof(int)),
new DataColumn("Address", typeof(string)),
new DataColumn("Latitude",typeof(string)),
new DataColumn("Longitude",typeof(string))
});
// if (response["status"] == OK)
// {
foreach (DataRow row in dsResult.Tables["result"].Rows)
{
string geometry_id = dsResult.Tables["geometry"].Select("result_id = " + row["result_id"].ToString())[0]["geometry_id"].ToString();
DataRow location = dsResult.Tables["location"].Select("geometry_id = " + geometry_id)[0];
// TextBox1.Text = location["lat"];
dtCoordinates.Rows.Add(row["result_id"], row["formatted_address"], location["lat"], location["lng"]);
// TextBox1.Text = dsResult.Tables["lat"].ToString;
// TextBox2.Text = location["lng"];
}
GridView1.DataSource = dtCoordinates;
GridView1.DataBind();
}
In this the above code if I give wrong location to Google API an error will occur as instance is not set. In here I need a message as label or anything else the location is wrong.
Please try this code:
In case you have any query or problem please feel free to ask me.