我要實現我的谷歌地圖,我輸入的任何地址就會自動獲得的經度和latitude.Here是代碼我想如何從地址獲取經度和緯度?
coder = new Geocoder(this);
try {
String locationName ="Gulshan 1";
List<Address> addressList = coder.getFromLocationName(
locationName, 5);
if (addressList != null && addressList.size() > 0) {
destLat = (int) (addressList.get(0).getLatitude() * 1e6);
destLon = (int) (addressList.get(0).getLongitude() * 1e6);
TextView pozycja = (TextView) findViewById(R.id.position);
pozycja.setText("lat: "
+ addressList.get(0).getLatitude() + " lng: "
+ addressList.get(0).getLongitude());
}
}
catch (Exception e) {
Log.e("error", e.getMessage().toString());
}
從這個代碼獲取位置是可能的嗎?
請描述你做了什麼讓:「沒事」,垃圾,錯誤信息等 – Irfy
它顯示「找不到0.0,0.0」 :( –