1

我需要在给定 PIN 码或区号的情况下加载 Google 地图位置。我尝试使用 Geocoder 方法使用给定地址查找纬度和经度。这在给出位置或区域时有效,但不适用于密码(特别是印度)。是否有任何方法或方法可以使用密码查找给定区域的纬度和经度。

这是特定于要在 android 上加载的地图,使用 mapview。

我写的代码如下:

package com.example.geocodingexample;

import java.io.IOException;
import java.util.List;
import java.util.Locale;
import android.location.Address;
import android.location.Geocoder;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.widget.LinearLayout;
import android.widget.Toast;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;

public class MainActivity extends MapActivity {
MapView mapView;
MapController mapController;
GeoPoint p;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mapView = (MapView) findViewById(R.id.mapview);
    mapController = mapView.getController();
    mapView.setBuiltInZoomControls(true);
    mapController = mapView.getController();
    mapController.setZoom(14);
    Geocoder geoCoder = new Geocoder(this, Locale.getDefault());
    try {
        List<Address> addresses = geoCoder.getFromLocationName("karnataka",
                1);
        String add = "";
        if (addresses.size() > 0) {
            p = new GeoPoint((int) (addresses.get(0).getLatitude() *    1E6),
                    (int) (addresses.get(0).getLongitude() * 1E6));
            mapController.animateTo(p);
            mapView.invalidate();
            Log.i("latitude obtained", String.valueOf(p.getLatitudeE6()));
            Log.i("longitude obtained", String.valueOf(p.getLongitudeE6()));
            Toast.makeText(this, "lat obtained", Toast.LENGTH_SHORT).show();
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

@Override
protected boolean isRouteDisplayed() {
    // TODO Auto-generated method stub
    return false;
}

}

4

2 回答 2

0

对于印度,它不能通过 Pincode 工作。

但是尝试这种替代方法。您可以添加其他参数,例如“Near=”,也许您可​​以将印度州添加到查询中并使其工作。

这可能有效,但我不确定。玩得开心

于 2012-11-05T06:03:35.320 回答
0

当您增加方法签名中的位置数量时,它会起作用。

 getFromLocationName("karnataka",
                        5);

它会给你纬度和经度。前任: -

    public void  findLocationName()
        {
     try {
    Geocoder gcd = new Geocoder(this, Locale.getDefault());
    List<Address> addresses;

    addresses = gcd.getFromLocationName("110002",5);


    for(int i=0;i<addresses.size();i++){
    Log.e("","in loop");
    Log.e("","lat :,,,,,,,,,,,,,"+addresses.get(i).getLatitude()+"  long............"+addresses.get(i).getLongitude());     
Toast.makeText(this, "lat : "+addresses.get(i).getLatitude(),1).show();
 Toast.makeText(this, "long : "+addresses.get(i).getLongitude(),1).show();
  }

     }
  catch (IOException e) {e.printStackTrace();}
    }
于 2012-11-07T12:52:06.797 回答