Android 解決Map根據地址返回經緯度方法getFromLocationName()不能正常執行
android.location 包提供了一些工具來實現基於位置的服務。主要包括 Geocoder 類和LocationManager服務。首先介紹 Geocoder。
1.使用Android進行地理編碼
如果打算使用地圖做一些實際的事情,可能必須將地址(或位置)轉換為緯度/經度對。此概念稱為地理編碼,android.location.Geocoder 類提供了此功能。實際上,Geocoder既提供了前向轉換,也提供了後向轉換--------它可以獲取地址並返回經度/緯度,也可以將經度/緯度對轉換為一組地址。該類提供了以下方法。
事實證明,計算地址並不完全屬於科學範疇,因為可以通過各種方式來描述位置。例如,getFromLocationName() 方法可以獲得地方的名稱、實體地址和機場編號,或者該位置的流行名稱。因此,這些方法提供了一個地址列表,而不是一個地址。因為這些方法返回一個列表,所以最好提供1~5的maxResults 值來限制結果集,下面我們來看一個查詢地址的例子,和原來一樣我們得自己定義一個類來繼承MapActivity,先來看看執行效果。
我們的佈局檔案
AndroidManifest.xml檔案
我們的MainActivity類
但是如果這個類要是這麼寫,就會有問題了。但是感覺這麼寫是沒錯誤的,但是每當你點選一次Find Location按鈕就會出現一次異常(IOException),異常見下圖。
說什麼服務不可以用,去網上一搜 遇見這問題的人還真不少,eoe上邊也有 但是沒說怎麼解決,不了了之了。至於為什麼有這個異常,我也不能準確的告訴大家 我也不太清楚,網上說什麼的都有。 什麼 是bug之類的 等等,大家可以去網上搜搜 最後自己這樣寫一次試試。但是解決方法還是有的,在這裡http://code.google.com/p/android/issues/detail?id=8816 老外搞出來的方法,他們討論的也很火熱,感覺比我們 積極很多。大家看 21樓就行了, 呵呵。
具體解決方法就是自己定義了兩個靜態方法,我把這兩個方法放到了MapUtility類中,這個類是我自己定義的。
MapUtility類
這兩個方法就不多解釋了,反正我們最終的目的是需要一個GeoPoint物件,它給我們返回正確的GeoPoint物件就行了,大家可以去原地址去看看他們怎麼討論了,連結在上邊我已經貼出來了,現在我們在搜尋tian an men 就會把tian an men給我們顯示在地圖的中央了,沒修改之前是 一點 一次異常,現在的效果如下圖,(大家知道 tian an men是啥意思吧,自動eye被 oracle搞過一次 法律意識越來越強啊。。。。 )
要體驗地理編碼在Android中的使用,可以在 EditText欄位中鍵入位置名稱或它的地址,然後點選 Find Location按鈕。要找到某個位置的地址,呼叫 Geocoder的 getFromLocationName()方法。位置可以是地址或流行名稱,比如 “故宮”。地理編碼是一項實時操作,所以根據Android文件的建議,我們建議將結果限制為5個。對getFromLocationName()的呼叫返回一個地址列表。示例程式獲取該地址列表並處理第一個地址(如果存在)。每個地址都具有經緯度。可以使用它來建立 GeoPoint。然後呼叫地圖控制器並導航到該點。縮放級別可以設定為1~21 (包括1和21)的整數。在從1向21移動時,縮放級別每次將增加兩級。
對於地理編碼,應該瞭解幾點。第一,返回的地址並不總是準確的地址。顯然,由於返回的地址列表取決於輸入的準確度,所以需要儘量向 Geocoder 提供準確的位置名稱。第二,儘量將 maxResults 設定為1~5的值。最後,應該認真考慮在不同於UI執行緒的執行緒中執行地理編碼操作。這有兩個原因。第一個很明顯:這項操作很耗時,而且你一定不希望UI在進行地理編碼時停頓,如果停頓會阻塞整個使用者介面。當在執行一些耗時的操作的時候,不能及時地分發 事件,包括使用者介面重繪事件。從使用者的角度來看,應用程式看上去像掛掉了。更糟糕的是,如果阻塞應用程式的時間過長(5秒鐘)Android會向使用者提示 一些資訊,即開啟一個“應用程式沒有相應(application not responding)”ANR 的對話方塊,關於執行緒的更多內容請大家看這裡http://byandby.iteye.com/blog/825071 第二個原因是,對於移動裝置,始終需要假設網路連線可能丟失並且連線很弱。因此,需要恰當地處理I/O 異常和超時。計算出地址以後,就可以將結果傳送給UI執行緒,下面我們看看使用後臺執行緒進行地理編碼,這個例子和上一個例子一樣 唯一不同的就是 這個例子把查詢地址的操作放到 另外一個輔助執行緒裡來執行了,上一個是所有的操作都在UI執行緒裡,下面是我們的Activity類,GeocodingDemoActivity,我們看看怎麼實現。。。
GeocodingDemoActivity類
這次我們再來看看執行效果。
從下圖我們能看出 查詢操作在不同的執行緒中完成。
最後在提醒大家如果下載原始碼 注意替換成自己的 金鑰。
原始碼已上傳
1.使用Android進行地理編碼
如果打算使用地圖做一些實際的事情,可能必須將地址(或位置)轉換為緯度/經度對。此概念稱為地理編碼,android.location.Geocoder 類提供了此功能。實際上,Geocoder既提供了前向轉換,也提供了後向轉換--------它可以獲取地址並返回經度/緯度,也可以將經度/緯度對轉換為一組地址。該類提供了以下方法。
- List<Address> getFromLocation(double latitude,double longitude,int maxResults);
- List<Address> getFromLocationName(String locationName, int maxResults, double lowerLeftLatitude, double lowerLeftLongitue, double upperRightLatitude, double upperRightLongitude);
- List<Address> getFromLocationName(String locationName, int maxResults)。
事實證明,計算地址並不完全屬於科學範疇,因為可以通過各種方式來描述位置。例如,getFromLocationName() 方法可以獲得地方的名稱、實體地址和機場編號,或者該位置的流行名稱。因此,這些方法提供了一個地址列表,而不是一個地址。因為這些方法返回一個列表,所以最好提供1~5的maxResults 值來限制結果集,下面我們來看一個查詢地址的例子,和原來一樣我們得自己定義一個類來繼承MapActivity,先來看看執行效果。
我們的佈局檔案
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <LinearLayout android:layout_width="fill_parent"
- android:layout_alignParentBottom="true"
- android:layout_height="wrap_content" android:orientation="vertical">
- <EditText
- android:id="@+id/location"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="請輸入地址..."/>
- <Button
- android:id="@+id/geocodeBtn"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Find Location" />
- </LinearLayout>
- <com.google.android.maps.MapView
- android:id="@+id/geoMap"
- android:clickable="true"
- android:layout_width="fill_parent"
- android:layout_height="320px"
- android:apiKey="0XemFEdFemEDqY3dE3Ko9ELJX12MRLjJGKEJ01g"
- />
- </RelativeLayout>
AndroidManifest.xml檔案
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="xiaohang.zhimeng" android:versionCode="1" android:versionName="1.0">
- <uses-sdk android:minSdkVersion="10" />
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <uses-library android:name="com.google.android.maps" />
- <activity android:name=".MainActivity" android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
- <uses-permission android:name="android.permission.INTERNET" />
- </manifest>
我們的MainActivity類
- package xiaohang.zhimeng;
- import java.util.List;
- import com.google.android.maps.GeoPoint;
- import com.google.android.maps.MapActivity;
- import com.google.android.maps.MapView;
- import android.location.Address;
- import android.location.Geocoder;
- import android.os.Bundle;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.EditText;
- public class MainActivity extends MapActivity {
- Geocoder geocoder = null;
- MapView mapView = null;
- @Override
- protected boolean isLocationDisplayed() {
- return false;
- }
- @Override
- protected boolean isRouteDisplayed() {
- return false;
- }
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- mapView = (MapView) findViewById(R.id.geoMap);
- mapView.setBuiltInZoomControls(true);
- // 經度:116.3946533203125
- // 緯度:39.87601941962116
- int lat = (int) (39.87601941962116 * 1E6);
- int lng = (int) (116.3946533203125 * 1E6);
- GeoPoint pt = new GeoPoint(lat, lng);
- mapView.getController().setZoom(10);
- mapView.getController().setCenter(pt);
- Button geoBtn = (Button) findViewById(R.id.geocodeBtn);
- geocoder = new Geocoder(this);
- geoBtn.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- try {
- EditText loc = (EditText) findViewById(R.id.location);
- String locationName = loc.getText().toString();
- List<Address> addressList = geocoder.getFromLocationName(
- locationName, 5);
- if (addressList != null && addressList.size() > 0) {
- int lat = (int) (addressList.get(0).getLatitude() * 1E6);
- int lng = (int) (addressList.get(0).getLongitude() * 1E6);
- GeoPoint pt = new GeoPoint(lat, lng);
- mapView.getController().setZoom(15);
- mapView.getController().setCenter(pt);
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- });
- }
- }
但是如果這個類要是這麼寫,就會有問題了。但是感覺這麼寫是沒錯誤的,但是每當你點選一次Find Location按鈕就會出現一次異常(IOException),異常見下圖。
說什麼服務不可以用,去網上一搜 遇見這問題的人還真不少,eoe上邊也有 但是沒說怎麼解決,不了了之了。至於為什麼有這個異常,我也不能準確的告訴大家 我也不太清楚,網上說什麼的都有。 什麼 是bug之類的 等等,大家可以去網上搜搜 最後自己這樣寫一次試試。但是解決方法還是有的,在這裡http://code.google.com/p/android/issues/detail?id=8816 老外搞出來的方法,他們討論的也很火熱,感覺比我們 積極很多。大家看 21樓就行了, 呵呵。
具體解決方法就是自己定義了兩個靜態方法,我把這兩個方法放到了MapUtility類中,這個類是我自己定義的。
MapUtility類
- package xiaohang.zhimeng.tool;
- import java.io.IOException;
- import java.io.InputStream;
- import org.apache.http.HttpEntity;
- import org.apache.http.HttpResponse;
- import org.apache.http.client.ClientProtocolException;
- import org.apache.http.client.HttpClient;
- import org.apache.http.client.methods.HttpGet;
- import org.apache.http.impl.client.DefaultHttpClient;
- import org.json.JSONArray;
- import org.json.JSONException;
- import org.json.JSONObject;
- import com.google.android.maps.GeoPoint;
- public class MapUtility {
- public static JSONObject getLocationInfo(String address) {
- HttpGet httpGet = new HttpGet("http://maps.google."
- + "com/maps/api/geocode/json?address=" + address
- + "ka&sensor=false");
- HttpClient client = new DefaultHttpClient();
- HttpResponse response;
- StringBuilder stringBuilder = new StringBuilder();
- try {
- response = client.execute(httpGet);
- HttpEntity entity = response.getEntity();
- InputStream stream = entity.getContent();
- int b;
- while ((b = stream.read()) != -1) {
- stringBuilder.append((char) b);
- }
- } catch (ClientProtocolException e) {
- } catch (IOException e) {
- }
- JSONObject jsonObject = new JSONObject();
- try {
- jsonObject = new JSONObject(stringBuilder.toString());
- } catch (JSONException e) {
- e.printStackTrace();
- }
- return jsonObject;
- }
- // After executing this, another method converts that JSONObject into a
- // GeoPoint.
- public static GeoPoint getGeoPoint(JSONObject jsonObject) {
- Double lon = new Double(0);
- Double lat = new Double(0);
- try {
- lon = ((JSONArray) jsonObject.get("results")).getJSONObject(0)
- .getJSONObject("geometry").getJSONObject("location")
- .getDouble("lng");
- lat = ((JSONArray) jsonObject.get("results")).getJSONObject(0)
- .getJSONObject("geometry").getJSONObject("location")
- .getDouble("lat");
- } catch (JSONException e) {
- e.printStackTrace();
- }
- return new GeoPoint((int) (lat * 1E6), (int) (lon * 1E6));
- }
- }
這兩個方法就不多解釋了,反正我們最終的目的是需要一個GeoPoint物件,它給我們返回正確的GeoPoint物件就行了,大家可以去原地址去看看他們怎麼討論了,連結在上邊我已經貼出來了,現在我們在搜尋tian an men 就會把tian an men給我們顯示在地圖的中央了,沒修改之前是 一點 一次異常,現在的效果如下圖,(大家知道 tian an men是啥意思吧,自動eye被 oracle搞過一次 法律意識越來越強啊。。。。 )
要體驗地理編碼在Android中的使用,可以在 EditText欄位中鍵入位置名稱或它的地址,然後點選 Find Location按鈕。要找到某個位置的地址,呼叫 Geocoder的 getFromLocationName()方法。位置可以是地址或流行名稱,比如 “故宮”。地理編碼是一項實時操作,所以根據Android文件的建議,我們建議將結果限制為5個。對getFromLocationName()的呼叫返回一個地址列表。示例程式獲取該地址列表並處理第一個地址(如果存在)。每個地址都具有經緯度。可以使用它來建立 GeoPoint。然後呼叫地圖控制器並導航到該點。縮放級別可以設定為1~21 (包括1和21)的整數。在從1向21移動時,縮放級別每次將增加兩級。
對於地理編碼,應該瞭解幾點。第一,返回的地址並不總是準確的地址。顯然,由於返回的地址列表取決於輸入的準確度,所以需要儘量向 Geocoder 提供準確的位置名稱。第二,儘量將 maxResults 設定為1~5的值。最後,應該認真考慮在不同於UI執行緒的執行緒中執行地理編碼操作。這有兩個原因。第一個很明顯:這項操作很耗時,而且你一定不希望UI在進行地理編碼時停頓,如果停頓會阻塞整個使用者介面。當在執行一些耗時的操作的時候,不能及時地分發 事件,包括使用者介面重繪事件。從使用者的角度來看,應用程式看上去像掛掉了。更糟糕的是,如果阻塞應用程式的時間過長(5秒鐘)Android會向使用者提示 一些資訊,即開啟一個“應用程式沒有相應(application not responding)”ANR 的對話方塊,關於執行緒的更多內容請大家看這裡http://byandby.iteye.com/blog/825071 第二個原因是,對於移動裝置,始終需要假設網路連線可能丟失並且連線很弱。因此,需要恰當地處理I/O 異常和超時。計算出地址以後,就可以將結果傳送給UI執行緒,下面我們看看使用後臺執行緒進行地理編碼,這個例子和上一個例子一樣 唯一不同的就是 這個例子把查詢地址的操作放到 另外一個輔助執行緒裡來執行了,上一個是所有的操作都在UI執行緒裡,下面是我們的Activity類,GeocodingDemoActivity,我們看看怎麼實現。。。
GeocodingDemoActivity類
- package xiaohang.zhimeng;
- import java.util.List;
- import org.json.JSONObject;
- import xiaohang.zhimeng.tools.MapUtility;
- import android.app.AlertDialog;
- import android.app.Dialog;
- import android.app.ProgressDialog;
- import android.location.Address;
- import android.location.Geocoder;
- import android.os.Bundle;
- import android.os.Handler;
- import android.os.Message;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.EditText;
- import com.google.android.maps.GeoPoint;
- import com.google.android.maps.MapActivity;
- import com.google.android.maps.MapView;
- public class GeocodingDemoActivity extends MapActivity {
- Geocoder geocoder = null;
- MapView mapView = null;
- ProgressDialog progDialog = null;
- List<Address> addressList = null;
- @Override
- protected boolean isLocationDisplayed() {
- return false;
- }
- @Override
- protected boolean isRouteDisplayed() {
- return false;
- }
- @Override
- protected void onCreate(Bundle icicle) {
- super.onCreate(icicle);
- setContentView(R.layout.main);
- mapView = (MapView) findViewById(R.id.geoMap);
- mapView.setBuiltInZoomControls(true);
- // 北京經緯度
- // 經度:116.3946533203125
- // 緯度:39.87601941962116
- int lat = (int) (39.87601941962116 * 1000000);
- int lng = (int) (116.3946533203125 * 1000000);
- GeoPoint pt = new GeoPoint(lat, lng);
- mapView.getController().setZoom(10);
- mapView.getController().setCenter(pt);
- Button geoBtn = (Button) findViewById(R.id.geocodeBtn);
- geoBtn.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- EditText loc = (EditText) findViewById(R.id.location);
- String locationName = loc.getText().toString();
- progDialog = ProgressDialog.show(GeocodingDemoActivity.this,
- "Processing.....", "Finding Location", true, false);
- findLocation(locationName);
- }
- });
- }
- private void findLocation(final String locationName) {
- Thread thrd = new Thread() {
- @Override
- public void run() {
- System.out.println("執行緒Name是:"
- + Thread.currentThread().getName());
- try {
- // do backgrond work
- JSONObject jo = MapUtility.getLocationInfo(locationName);
- GeoPoint gp = MapUtility.getGeoPoint(jo);
- Message message = uiCallback.obtainMessage();
- message.obj = gp;
- message.sendToTarget();
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- };
- thrd.start();
- }
- // ui thread callback handler
- private Handler uiCallback = new Handler() {
- public void handleMessage(android.os.Message msg) {
- System.out.println("執行緒Name是:" + Thread.currentThread().getName());
- progDialog.dismiss();
- GeoPoint pt = (GeoPoint) msg.obj;
- if (pt != null) {
- mapView.getController().setZoom(15);
- mapView.getController().setCenter(pt);
- } else {
- Dialog foundNothingDlg = new AlertDialog.Builder(
- GeocodingDemoActivity.this).setIcon(0)
- .setTitle("Failed to Find Location")
- .setPositiveButton("OK", null)
- .setMessage("Location Not Found").create();
- foundNothingDlg.show();
- }
- };
- };
- }
這次我們再來看看執行效果。
從下圖我們能看出 查詢操作在不同的執行緒中完成。
最後在提醒大家如果下載原始碼 注意替換成自己的 金鑰。
原始碼已上傳
相關文章
- C#根據經緯度獲取實體地址C#
- java 根據經緯度計算圓周Java
- js根據經緯度,獲取省市區。(百度地圖逆地址解析)JS地圖
- 微信小程式-如何在map上根據經緯度新增標記點(附原始碼)微信小程式原始碼
- 百度地圖根據經緯度計算瓦片行列號地圖
- 根據經緯度座標查詢最近的門店
- 根據時間經緯度高程計算天頂角
- Android高德地圖定位SDK 返回資訊中只有經緯度問題解決Android地圖
- java 根據兩個位置的經緯度,來計算兩地的距離 經緯度處理Java
- php三行程式碼解決輸入地址給出經緯度PHP行程
- Java根據地理位置獲取經緯度(呼叫百度地圖API)Java地圖API
- 根據經緯度計算兩點之間的距離的公式公式
- 根據兩點經緯度計算距離和角度——java實現Java
- iOS根據兩點經緯度座標計算指南針方位角iOS
- JavaScript字串物件 之 根據字元返回位置、根據位置返回字元、字串操作方法JavaScript字串物件字元
- R語言:根據經緯度在世界地圖上畫出各個點R語言地圖
- 高德解析城市的分析,根據高德的經緯度獲取城市cityCode
- 使用google map v3新增經緯度資訊Go
- Map根據Value排序排序
- 常用經緯度轉換為ntu經緯度
- 如何快速將地址解析為經緯度座標?
- 為什麼不能根據返回型別區分過載?型別
- asp.net系統中根據經緯度座標,直接呼叫google地圖,顯示位置ASP.NETGo地圖
- java中Map根據Map的value取keyJava
- 全新安裝jivejdon不能正常執行
- js根據ip地址獲取省份城市的方法JS
- 經緯度轉換
- Windows XP 不能夠正常關機的解決方法(轉)Windows
- java 根據GPS經緯度座標計算兩點的直線距離的演算法Java演算法
- 根據經緯度繪製座標點相對位置(分別用php和html5實現)PHPHTML
- uniapp使用高德地圖解析經緯度轉為中文地址APP地圖圖解
- 【地圖API】地址錄入時如何獲得準確的經緯度?淘寶收貨地址詳解地圖API
- 【故障-ORACLE】OSWBB不能執行解決Oracle
- win10系統不能執行qq的解決方法Win10
- 父DIV的高度不能根據子DIV自動變化的解決
- 米轉換經緯度
- 根據id獲取元素的寬度的方法
- 微信小程式獲取手機定位+經緯度轉詳細地址微信小程式