Currently, I am developing an application using asp.net, c#, and Google Map API-v3. My goal is to obtain the address of a location specified by the user in CHINESE language based on their input latitude and longitude. The URL I am utilizing for this purpose is provided below:
https://maps.googleapis.com/maps/api/geocode/json?latlng={0},{1}&language=zh-TW&sensor=false
Although I am able to retrieve results, they do not appear to be accurate.
For example:
Latitude=25.01482 Longitude=121.42633
Result :
242å°ç£æ–°åŒ—市新èŎŠ管理员西路229街7号15號
After employing client side reverse geocoding in Google map API V3, I obtained the following result:
242台灣新北市新莊區光明里
I would appreciate any insights into what mistake I might be making in my process.
Thank you