地理编码器抛出异常:服务在 Android (Google api) 2.3.3 中不可用

发布于 2024-12-20 10:41:50 字数 950 浏览 2 评论 0原文

我正在使用 GeoCoder 在我的应用程序中获取位置。以下代码是:

Geocoder geoCoder = new Geocoder(this);
try {
   List<Address> addresses = geoCoder.getFromLocationName("", 1);
   if(null != addresses && addresses.size() > 0){
       address = addresses.get(0);
       List<Overlay> mapOverlay = mapView.getOverlays();
           //This is new class to get address on basis on latitude and longitude
       AddressOverlay addressOverlay = new AddressOverlay(address);
       mapOverlay.add(addressOverlay);
       final MapController mapController = mapView.getController();

           //Start animating the map towards the given point.
       mapController.animateTo(addressOverlay.getGeoPoint(), new Runnable(){
          public void run(){
             mapController.setZoom(12);
          }
       });
    }else{
      //No results for that address.
 }

我收到异常:第一行服务不可用(尝试后)。有没有人可以指导我并提供解决此问题的步骤?

等待及时回复!!

I am using GeoCoder for getting the location in my application. The following code is:

Geocoder geoCoder = new Geocoder(this);
try {
   List<Address> addresses = geoCoder.getFromLocationName("", 1);
   if(null != addresses && addresses.size() > 0){
       address = addresses.get(0);
       List<Overlay> mapOverlay = mapView.getOverlays();
           //This is new class to get address on basis on latitude and longitude
       AddressOverlay addressOverlay = new AddressOverlay(address);
       mapOverlay.add(addressOverlay);
       final MapController mapController = mapView.getController();

           //Start animating the map towards the given point.
       mapController.animateTo(addressOverlay.getGeoPoint(), new Runnable(){
          public void run(){
             mapController.setZoom(12);
          }
       });
    }else{
      //No results for that address.
 }

I am getting exception: Service is not available on 1st line (just after try). Is there any person who can mentor to me and provide the steps to resolve this problem?

wait for prompt response!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文