In this article I will explain how to get address of a location from help of geographical position coordinate Latitude and Longitude using Google Map API JSON response in C#.
We need to implement two namespace in our C# code
When we pass parameter i.e. Latitude and Longitude to our function that will return address of that location.
When we hit Google Map API then it return JSON data so we have to serialize and deserialize JSON object. For this we need some class to map those data.
We need to implement two namespace in our C# code
using System.Net;
using System.Web.Script.Serialization;
When we pass parameter i.e. Latitude and Longitude to our function that will return address of that location.
When we hit Google Map API then it return JSON data so we have to serialize and deserialize JSON object. For this we need some class to map those data.public string getAddress(string lat, string lng) { string returnVal = string.Empty; string url = string.Format("http://maps.googleapis.com/maps/api/geocode/json?latlng={0},{1}", lat, lng); using (WebClient client = new WebClient()) { string json = client.DownloadString(url); GoogleResponseData addressInfo = (new JavaScriptSerializer()).Deserialize<GoogleResponseData>(json); returnVal = addressInfo.results[0].formatted_address; } return returnVal; }
public class GoogleResponseData
{ public string status { get; set; } public results[] results { get; set; } } public class results { public string formatted_address { get; set; } public geometry geometry { get; set; } public string[] types { get; set; } public address_component[] address_components { get; set; } } public class geometry { public string location_type { get; set; } public location location { get; set; } } public class location { public string lat { get; set; } public string lng { get; set; } }
public class address_component { public string long_name { get; set; } public string short_name { get; set; } }
When we hit Google Map API then it return JSON data so we have to serialize and deserialize JSON object. For this we need some class to map those data.
Comments
Post a Comment