第一步:构造Geocoder API 需要的URL
URL格式
https://maps.googleapis.com/maps/api/geocode/output?parameters
其中output有两个选项json/xml,parameters部分有address/language/sensor等多个选项
URL示例
https://maps.googleapis.com/maps/api/geocode/json?address=北京天安门&language=zh_CN&sensor=false
第二步:向API发送Http请求,返回一个json字符串
String uriAPI = "http://maps.googleapis.com/maps/api/geocode/json?address=%s&language=%s&sensor=%s"; //构造Geocoder API的完整URL String url = String.format(uriAPI, addr,"zh_CN","false"); //创建request对象 HttpGet request = new HttpGet(url); //创建HttpClient对象 HttpClient client = new DefaultHttpClient(); //得到请求响应对象 HttpResponse response = client.execute(request); //若状态码为200,说明请求成功 if(response.getStatusLine().getStatusCode()==200){ //获得响应条目--该条目是json字符串 String resultStr = EntityUtils.toString(response.getEntity()); geoPoint=parseJson(resultStr); }
第三步:解析json字符串
//解析根元素,得到一个数组 JSONArray jsonObjs = new JSONObject(str).getJSONArray("results"); //取出数组中第一个json对象(本示例数组中实际只包含一个元素) JSONObject jsonObj = jsonObjs.getJSONObject(0); //解析得formatted_address值 String address = jsonObj.getString("formatted_address"); //解析得json对象中的geometry对象 JSONObject geometry = jsonObj.getJSONObject("geometry"); //解析得geometry对象中的location对象 JSONObject location = geometry.getJSONObject("location"); //解析得location对象中的latitude、longitude值 String lat = location.getString("lat"); String lng = location.getString("lng"); dLati = Double.parseDouble(lat); dLong = Double.parseDouble(lng);