getFromLocationName()在Android平板电脑上返回null

时间:2011-04-05 10:38:41

标签: android tablet

cmap.setOnClickListener(new OnClickListener()
        {
            public void onClick(View v)
            {   System.out.println("Cmap initial:=lat:-"+lat+" lang:-"+lon);
            Toast t=Toast.makeText(getBaseContext(),"Location"+lat+"lang:-"+lon,Toast.LENGTH_LONG);
            t.show();
            tlname=elname.getText().toString();
            tladdr=eladdr.getText().toString();
            addressInput=tlname+" "+tladdr;
            System.out.println("address:-"+addressInput);
            Toast t3=Toast.makeText(getBaseContext(),"Address"+addressInput,Toast.LENGTH_LONG);
            t3.show();
            try
            {
                Geocoder gc1 = new Geocoder(
                        getBaseContext(), Locale.getDefault());

                foundAdresses = gc1.getFromLocationName(addressInput, 5);
                showAdressResults.sendEmptyMessage(0);
                Toast t1=Toast.makeText(getBaseContext(),"Location...."+foundAdresses,Toast.LENGTH_LONG);
                t1.show();
                System.out.println("faddress:-"+foundAdresses);
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            if (foundAdresses.size() == 0)
            { // if no address found,
                // display an error
                Dialog locationError = new AlertDialog.Builder(
                        Gotask.this).setIcon(0).setTitle(
                        "Error").setPositiveButton(R.string.ok, null)
                        .setMessage(
                        "Sorry, your address doesn't exist.")
                        .create();
                locationError.show();

            } else 
            { // else display address on map
                for (int i = 0; i < foundAdresses.size(); ++i)
                {

                    Address x = foundAdresses.get(i);
                    lat =  (x.getLatitude() *100);
                    lon = (float) x.getLongitude();
                    System.out.println("Cmap:=lat:-"+lat+" lang:-"+lon);


                }
                navigateToLocation((lat * 1000000), (lon * 1000000),myMap);
            }


        }

    });

2 个答案:

答案 0 :(得分:1)

我在反向地理编码中也遇到过这种问题,所以我使用Google api。 请参阅this link for google api以用于反向地理编码。

答案 1 :(得分:0)

当我开发基于谷歌地图的应用程序时,我遇到了同样的问题。问题出在devcie,我使用的那个不支持后端服务(一种服务附带设备)负责用于GeoCoding相关API的工作。所以我决定使用谷歌公开的服务来查询lat&amp;经度所需的地址。所以试一试。

请参阅此链接以了解更多信息

http://code.google.com/apis/maps/documentation/geocoding/

请参阅以下链接:

How can you tell when an Android device has a Geocoder backend service?

Android; Geocoder, why do I get "the service is not available"?

以下是解析Xml输出后从响应中获取纬度和经度的地理编码请求的示例请求。

http://maps.googleapis.com/maps/api/geocode/xml?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true_or_false

前面提到的链接中有一个明确的例子。