地图视图中的 ontapp() 方法

发布于 2024-12-12 08:05:17 字数 736 浏览 0 评论 0原文

我是android新手,在地图视图中工作,我想通过点击一个位置来获取位置,从地图上获取logi/lati,Google带我到这个方法 **protected boolean onTapp(GeoPoint p, MapView map) {

  if(Map == null) {
   Map = map;
  }
   Geocoder coder = new Geocoder(this.mContext,Locale.getDefault());
   try {


    List<Address> aList = coder.getFromLocation(p.getLatitudeE6()/1e6, p.getLongitudeE6()/1e6, 5);
    if(aList.size() > 0) {
     int i = 0;
     String address = "";

     while(aList.get(0).getAddressLine(i) != null) {
      address+=aList.get(0).getAddressLine(i) + " ";
      i++;
     }


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

   return true;**

我已将其添加到 ItemizedOverlay 上,几乎没有什么变化,但它不起作用,任何人都可以帮助我或分享一些它的工作示例。

im new in android and working in map view i want to get location,s logi/lati from map by tapping on a location , Google take me to this method
**protected boolean onTapp(GeoPoint p, MapView map) {

  if(Map == null) {
   Map = map;
  }
   Geocoder coder = new Geocoder(this.mContext,Locale.getDefault());
   try {


    List<Address> aList = coder.getFromLocation(p.getLatitudeE6()/1e6, p.getLongitudeE6()/1e6, 5);
    if(aList.size() > 0) {
     int i = 0;
     String address = "";

     while(aList.get(0).getAddressLine(i) != null) {
      address+=aList.get(0).getAddressLine(i) + " ";
      i++;
     }


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

   return true;**

i have Add this on ItemizedOverlay with little change but its not working can any one will please help me or share some working example of it.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猥琐帝 2024-12-19 08:05:17

这会做...
aList = geocoder.getFromLocation(pt.getLatitudeE6()/1E6, pt.getLongitudeE6()/1E6, 1);

              if(aList != null) {
               Address returnedAddress = aList.get(0);
               StringBuilder strReturnedAddress = new StringBuilder("\n");
               for(int i=0; i<returnedAddress.getMaxAddressLineIndex(); i++) {
                strReturnedAddress.append(returnedAddress.getAddressLine(i)).append("\n");
               }
               getlocfrommap.setText(strReturnedAddress.toString());
              }
              else{
              getlocfrommap.setText("No Address returned!");
              }
             } catch (IOException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
              getlocfrommap.setText("Canont get Address!");

this will do...
aList = geocoder.getFromLocation(pt.getLatitudeE6()/1E6, pt.getLongitudeE6()/1E6, 1);

              if(aList != null) {
               Address returnedAddress = aList.get(0);
               StringBuilder strReturnedAddress = new StringBuilder("\n");
               for(int i=0; i<returnedAddress.getMaxAddressLineIndex(); i++) {
                strReturnedAddress.append(returnedAddress.getAddressLine(i)).append("\n");
               }
               getlocfrommap.setText(strReturnedAddress.toString());
              }
              else{
              getlocfrommap.setText("No Address returned!");
              }
             } catch (IOException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
              getlocfrommap.setText("Canont get Address!");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文