I am currently developing a web application in Asp.Net to retrieve Nearby Places.
To achieve this, I am utilizing the following link:
By using the above link, I am able to retrieve places within a 5 km radius and display their locations on Google Maps.
However, my goal is to input the above link and generate output in XML format through C# Coding or JavaScript in ASP.Net.
For example:
<Area>
Keshavanagar Colony, Srinagar Colony Rd, Yousufguda, AP, India
</Area>
...and more similar outputs.
If anyone can assist me in converting Google Maps data to XML format using C# Coding or JavaScript in ASP.Net, I would greatly appreciate it.
Thank you in advance.
After searching various forums, I came across the following link;
Using this link, I am able to obtain JSON file output.
Instead of downloading the file, I aim to call the link from my C# code and extract the address block to display it in my ASP ListBox or GridView Control.
Upon attempting to convert the JSON data into a string or array variable using C# code, I encountered an error during deserialization.
If someone could provide assistance by offering code to convert JSON data into a string or array format using C# Coding for displaying in an ASP ListBox, it would be highly appreciated.
Thanks in Advance.