{"id":32209,"date":"2016-02-04T16:25:52","date_gmt":"2016-02-04T10:55:52","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=32209"},"modified":"2016-02-09T13:51:55","modified_gmt":"2016-02-09T08:21:55","slug":"find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/","title":{"rendered":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#"},"content":{"rendered":"<p>This Blog explains how to find the Latitude \/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in\u00a0<a href=\"https:\/\/2thenew.online\/blog\/10-key-basic-things-before-starting-development-on-a-new-asp-net-web-forms-application\/\">Asp .Net<\/a>.<\/p>\n<p>We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the Geographical Co-ordinates and other information in XML or\u00a0<a href=\"https:\/\/2thenew.online\/blog\/using-definitions-internal-to-json-schema-and-external-to-json-schema-version-draft-v4\/\">JSON<\/a>\u00a0format.<\/p>\n<p><strong>How to send request to get coordinate by using Geocoding API<\/strong><\/p>\n<p><strong><a href=\"http:\/\/maps.google.com\/maps\/api\/geocode\/xml?address=Parameters&amp;sensor=false\">http:\/\/maps.google.com\/maps\/api\/geocode\/xml?address=Parameters&amp;sensor=false<\/a><\/strong><\/p>\n<p>Through above URL, we can find the latitude and longitude by passing the particular address parameter in query string named \u201caddress\u201d. The output may be either of the following value:<\/p>\n<ul>\n<li>JSON<\/li>\n<li>XML<\/li>\n<\/ul>\n<p>We can use <strong>Google Geocoding API<\/strong> to convert an address to its Latitude or longitude by creating HTTP request.<\/p>\n<p><strong>C# Code<\/strong><\/p>\n<p>Add following namespace<\/p>\n<p>using System.IO;<\/p>\n<p>using System.Net;<\/p>\n<p>Stirng strAddress \u00a0= \u201dNoida 201301,India\u201d;<\/p>\n<p>String url=<strong><a href=\"http:\/\/maps.google.com\/maps\/api\/geocode\/xml?address=\u201d+%20Address%20+\u201d&amp;sensor=false\">http:\/\/maps.google.com\/maps\/api\/geocode\/xml?address=\u201d+ strAddress +\u201d&amp;sensor=false<\/a>;<\/strong><\/p>\n<p><strong>This is given below function named as \u201cGetdtLatLong\u201d in which we will pass input parameter the url of API as given above and it will return \u00a0the output as data table <\/strong><\/p>\n<p>Public DataTable GetdtLatLong(string url)<\/p>\n<p>{<\/p>\n<p>DataTable dtGMap=null;<\/p>\n<p>WebRequest request = WebRequest.Create(url);<\/p>\n<p>using (WebResponse response = (HttpWebResponse)request.GetResponse())<\/p>\n<p>{<\/p>\n<p>using (StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8))<\/p>\n<p>{<\/p>\n<p>DataSet dsResult = new DataSet();<\/p>\n<p>dsResult.ReadXml(reader);<\/p>\n<p>DataTable dtCoordinates = new DataTable();<\/p>\n<p>dtCoordinates.Columns.AddRange(new DataColumn[4] { new DataColumn(&#8220;Id&#8221;, typeof(int)),<\/p>\n<p>new DataColumn(&#8220;Address&#8221;, typeof(string)),<\/p>\n<p>new DataColumn(&#8220;Latitude&#8221;,typeof(string)),<\/p>\n<p>new DataColumn(&#8220;Longitude&#8221;,typeof(string)) });<\/p>\n<p>foreach (DataRow row in dsResult.Tables[&#8220;result&#8221;].Rows)<\/p>\n<p>{<\/p>\n<p>string geometry_id = dsResult.Tables[&#8220;geometry&#8221;].Select(&#8220;result_id = &#8221; + row[&#8220;result_id&#8221;].ToString())[0][&#8220;geometry_id&#8221;].ToString();<\/p>\n<p>DataRow location = dsResult.Tables[&#8220;location&#8221;].Select(&#8220;geometry_id = &#8221; + geometry_id)[0];<\/p>\n<p>dtCoordinates.Rows.Add(row[&#8220;result_id&#8221;], row[&#8220;formatted_address&#8221;], location[&#8220;lat&#8221;], location[&#8220;lng&#8221;]);<\/p>\n<p>}<\/p>\n<p>dtGMap= dtCoordinates;<\/p>\n<p>returns\u00a0 \u00a0\u00a0\u00a0\u00a0\u00a0dtGMap;<\/p>\n<p>} }<\/p>\n<p><strong>Result: The output of dtGMap data table which is fetched by google API will be as<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-32471\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/02\/GoogleMapAns.png\" alt=\"GoogleMapAns\" width=\"545\" height=\"132\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This Blog explains how to find the Latitude \/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in\u00a0Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the [&hellip;]<\/p>\n","protected":false},"author":310,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":374,"footnotes":""},"categories":[1953,1],"tags":[1440,3050,3089],"class_list":["post-32209","post","type-post","status-publish","format-standard","hentry","category-marketing","category-technology","tag-asp-net","tag-google-map-api","tag-google-maps-asp-net"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"This Blog explains how to find the Latitude \/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Anshul Verma\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c# | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"This Blog explains how to find the Latitude \/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c# | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This Blog explains how to find the Latitude \/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#article\",\"name\":\"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c# | TO THE NEW Blog\",\"headline\":\"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshul-2\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2016\\\/02\\\/GoogleMapAns.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#articleImage\"},\"datePublished\":\"2016-02-04T16:25:52+05:30\",\"dateModified\":\"2016-02-09T13:51:55+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":3,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#webpage\"},\"articleSection\":\"Marketing, Technology, asp.net, Google MAP API, Google maps asp.net\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#listItem\",\"name\":\"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#listItem\",\"position\":3,\"name\":\"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshul-2\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshul-2\\\/\",\"name\":\"Anshul Verma\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d566d72348d69db66bf4e3b3873fb4ffdaa90dd578b4956fb19f2e89cb79afe8?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Anshul Verma\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/\",\"name\":\"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c# | TO THE NEW Blog\",\"description\":\"This Blog explains how to find the Latitude \\\/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshul-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anshul-2\\\/#author\"},\"datePublished\":\"2016-02-04T16:25:52+05:30\",\"dateModified\":\"2016-02-09T13:51:55+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c# | TO THE NEW Blog","description":"This Blog explains how to find the Latitude \/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the","canonical_url":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#article","name":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c# | TO THE NEW Blog","headline":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/anshul-2\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2016\/02\/GoogleMapAns.png","@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#articleImage"},"datePublished":"2016-02-04T16:25:52+05:30","dateModified":"2016-02-09T13:51:55+05:30","inLanguage":"en-US","commentCount":3,"mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#webpage"},"articleSection":"Marketing, Technology, asp.net, Google MAP API, Google maps asp.net"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.online\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#listItem","name":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#listItem","position":3,"name":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/anshul-2\/#author","url":"https:\/\/2thenew.online\/blog\/author\/anshul-2\/","name":"Anshul Verma","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d566d72348d69db66bf4e3b3873fb4ffdaa90dd578b4956fb19f2e89cb79afe8?s=96&d=mm&r=g","width":96,"height":96,"caption":"Anshul Verma"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#webpage","url":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/","name":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c# | TO THE NEW Blog","description":"This Blog explains how to find the Latitude \/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/anshul-2\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/anshul-2\/#author"},"datePublished":"2016-02-04T16:25:52+05:30","dateModified":"2016-02-09T13:51:55+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c# | TO THE NEW Blog","og:description":"This Blog explains how to find the Latitude \/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the","og:url":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c# | TO THE NEW Blog","twitter:description":"This Blog explains how to find the Latitude \/ Longitude co-ordinates by using Google Geocoding API. This API will return latitude and longitude with respect to a address of a location in Asp .Net. We have to pass locations address as a parameter in address query strings in the Google API URL and returns to the","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"32209","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 12:57:02","updated":"2024-02-29 08:28:01","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tFind Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Technology","link":"https:\/\/2thenew.online\/blog\/category\/technology\/"},{"label":"Find Latitude and Longitude of an Address Location Using Google API in Asp .Net using c#","link":"https:\/\/2thenew.online\/blog\/find-latitude-and-longitude-of-an-address-location-using-google-api-in-asp-net-using-c\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/32209","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/310"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=32209"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/32209\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=32209"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=32209"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=32209"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}