地址查询(反向地址解析)请求用Google Geocoding API实现,在C#在客户端程序中创建上述请求。
1 WebClient client = new WebClient(); 2 string url = "http://maps.google.com/maps/api/geocode/xml?latlng=39.910093,116.403945&language=zh-CN&sensor=false"; 3 client.Encoding = Encoding.UTF8; 4 string responseTest = client.DownloadString(url);
想请教下,用javascript应该怎么写代码~~~
路过学习