如何从Google地理编码API json获取LatLng数据?

时间:2016-04-22 00:50:31

标签: java android google-maps

我正在创建一个带有地图的应用程序并遇到问题。 我的Fragment和AutoCompleteTextView中有一个mapView。当我从自动完成中选择任何城市时,它应该在地图上显示为标记。

这是代码,它在真正的三星Galaxy S3和Galaxy S6模拟器上运行良好,但不适用于魅族MX5。 正如我所发现的,Geocoder在每台设备上都无法正常工作,因此有一个使用Google Geocoding API的解决方案。我得到了Json的答案,但不知道如何从JSON获得LatLang和FeatureName。

JSON示例:http://maps.google.com/maps/api/geocode/json?address=London&sensor=true

我是Android新手,对不起,如果不是一切都很清楚。

atvFrom.setOnItemClickListener(new AdapterView.OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            locationFrom = atvFrom.getText().toString();
            List<Address> addressListFrom = null;
            Geocoder geocoder = new Geocoder(getActivity());

            try {
                if (markerFrom[0] != null) {markerFrom[0].remove();}
                addressListFrom = geocoder.getFromLocationName(locationFrom, 1);

                if (addressListFrom != null) {
                    Address addressFrom = addressListFrom.get(0);
                    latLngFrom[0] = new LatLng(addressFrom.getLatitude(), addressFrom.getLongitude());
                    tripFrom = addressListFrom.get(0).getFeatureName();

                    markerFrom[0] = googleMap.addMarker(new MarkerOptions().position(latLngFrom[0]).title("From"));
                    googleMap.animateCamera(CameraUpdateFactory.newLatLng(latLngFrom[0]));

                    if (markerTo[0]!=null) {
                        if (line[0] !=null) {line[0].remove();}
                        line[0] = googleMap.addPolyline(new PolylineOptions().add(latLngFrom[0], latLngTo[0]).width(5).color(Color.BLUE));
                    }

                } else {
                    MyGeocoder myGeocoder = new MyGeocoder(FragmentMap.this);
                    myGeocoder.execute(locationFrom);
                    try {
                        JSONObject jObj = new JSONObject(myGeocoder.jsonResult);
                        String Status = jObj.getString("status");
                        if (Status.equalsIgnoreCase("OK")) {
                            JSONArray Results = jObj.getJSONArray("results");
                            // how to get LatLng and FeatureName from json?
                            // dont know what to do here

                        }
                    } catch (JSONException e) {
                        e.printStackTrace();
                    }
                }

            } catch (IOException e) {
                //e.printStackTrace();
                Toast.makeText(getActivity(), "Error", Toast.LENGTH_SHORT).show();
            }
        }
    });

1 个答案:

答案 0 :(得分:0)

您需要浏览Json对象才能到达location。这就是你需要做的事情

try {
    JSONObject jObj = new JSONObject(myGeocoder.jsonResult);
    String Status = jObj.getString("status");
    if (Status.equalsIgnoreCase("OK")) {
        JSONArray results = jObj.getJSONArray("results");
        JSONObject item = results.getJSONObject(0);//read first item of results
        JSONObject geometry = item.getJSONObject("geometry");//location is inside geometry object
        JSONObject location = geometry.getJSONObject("location");
        double latitude = location.getDouble("lat");
        double longitude = location.getDouble("lng");
        //or
        LatLng latLng = new LatLng(latitude, longitude);
    }
} catch (JSONException e) {
    e.printStackTrace();
}

要检查设备上的 Geocoder ,请调用以下方法

  

使用isPresent()方法确定是否存在Geocoder实现。

if(Geocoder.isPresent()){
   //exists
}