通信人家园

标题: Android中使用Geocoding API  [查看完整版帖子] [打印本页]

时间:  2015-3-20 10:49
作者: weihongjjj     标题: Android中使用Geocoding API


第一步:构造Geocoder API 需要的URL
URL格式
https://maps.googleapis.com/maps/api/geocode/output?parameters
其中output有两个选项json/xml,parameters部分有address/language/******等多个选项
URL示例
https://maps.googleapis.com/maps/api/geocode/json?address=北京***&language=zh_CN&******=false
第二步:向API发送Http请求,返回一个json字符串
[java]
String uriAPI = "http://maps.googleapis.com/maps/api/geocode/json?address=%s&language=%s&******=%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字符串
[java]
//解析根元素,得到一个数组
            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);






通信人家园 (https://www.txrjy.com/) Powered by C114