歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android GPS定位系統

GPS(Gobal Positional System)全球定位系統,是一個中距離圓型軌道衛星導航系統,他可以為地球表面的絕大部分地區(98%)提供准備的定位、測速和高精度的時間標准。

Android支持地理定位服務的API。該地理定位服務可以用來獲取當前設備的地理位置,應用程序可以定時請求更新設備當前的地理定位信息。比如應用程序可以借助一個Intent接受器來實現如下功能:以經緯度和半徑劃定一個區域,當設備出入該區域時,發出提示信息,還可以和Google Map API一起使用,完成更多的任務。關於地理定位系統的API全部位於android.location包內,其中包括以下幾個重要的功能類:

類名

描述

LocationManager

提供訪問定位服務的功能,也提供獲取最佳定位提供者的功能,另外,臨時報警功能也可以借助該類來實現。

LocationProvider

定位提供者的抽象類。定位提供者具備周期性報告設備地理位置的功能。

LocationListener

提供定位信息發生改變時的回調共嫩。必須事先在定位管理器中注冊監聽器對象。

Criteria

使得應用能夠通過LocationProvider中設置的屬性來選擇合適的定位提供者。

Geocoder

用於處理地理編碼和反向地理編碼的類。地理編碼是指將地址或其他描述轉變為經度和緯度,反向地理編碼則是將經度和緯度轉變為地址或描述語言,其中包含了兩個構造函數,需要傳入經度和緯度的坐標。getFromLocation方法可以得到一組關於地址的數組。

要使用地理定位,首先需要取得LocationManager的實例,在Android中,獲得LocationManager的唯一方法是通過getSystemService方法的調用。通過使用LocationManager,我們可以獲得一個位置提供者的列表。在一個真實的手持設備中,這個列表包含了一些GPS服務。我們也可以選擇更強大、更精確、不帶其他附加服務的GPS。代碼如下:

LocationManager locationManager;

        Stringcontext = Context.LOCATION_SERVICE;

        locationManager= (LocationManager)getSystemService(context);

取得LocationManager對象之後,我們還需要注冊一個周期的更新視圖,代碼如下

LocationManager.requestLocationUpdate(LocationManager.GPS_PROVDER,1000, 0, locationListener);

其中第一個參數是設置服務提供者,第二個參數是周期,最後一個參數locationListener,是用來監聽定位信息的改變,必須要實現如下方法:

方法

描述

onLocationChanged(Location location)

當坐標改變時候觸發該函數,如果Provider傳相同的坐標,它就不會觸發。

onProviderDisabled(String provider)

Provider禁用時觸發此函數,比如GPS被關閉。

onProviderEnabled(String provider)

Provider啟用時觸發此函數,比如GPS被打開。

onStatusChanged(String provider, int status, Bundle extras)

Provider的轉態在可用、暫時不可用和無服務三個狀態直接切換時觸發此函數。

要使用定位的API,首先需要再AndroidManifest.xml文件中添加其權限,具體代碼如下:

  1. <uses-permission android:name="android.permission.INTERNET"/>  
  2. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>  
  3. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>  
  4. <application  
  5.         android:icon="@drawable/ic_launcher"  
  6.         android:label="@string/app_name" >  
  7.           
  8.         <uses-library  android:name="com.google.android.maps"/>  
  9.           
  10.         <activity  
  11.             android:name=".GPSActivity"  
  12.             android:label="@string/app_name" >  

由於我們在模擬器上測試,所以需要人為的設置一個坐標。可用通過兩種方法來設置一個模擬的坐標值。第一種方法是通過DDMS,我們可用在Eclipse的ADT插件中使用這種方法,只要啟動Eclipse,選擇“Window”->“Show View”,打開“Emulator Control”界面手動或者通過KML和GPX文件來設置一個坐標。

另外一種方法使用geo命令,我們需要telnet到本機的5554端口,然後再命令行下輸入類似於geo fix-121.45365 46.51119 4392這樣的命令,後面三個參數分別是經度、緯度和(可選)海拔。設置後再Android模擬器屏幕上便多出了一個如圖9-17所示的標准,表示模擬了一個GPS權限。

現在我們可以使用位置管理器(LocationManager)和位置提供者進行getFromLocation的調用。這個方法放回本機當前位置的一個快照,這個快照將以Location對象形式提供。在手持設備中,我們可以獲得當前位置的經度和緯度;調用getFromLocationName方法可以返回一個數據表示一個地方的地名。

在這個地圖中,我們還可以創建了一個菜單來縮放地圖,這個功能是使用地圖控制器(MapController)的zoomIn和zoomOut方法來放大和縮小地圖。

下面試測試一個示例代碼:

  1. package cn.edu.pku;  
  2.   
  3. import java.io.IOException;  
  4. import java.util.List;  
  5. import java.util.Locale;  
  6.   
  7. import com.google.android.maps.GeoPoint;  
  8. import com.google.android.maps.MapActivity;  
  9. import com.google.android.maps.MapController;  
  10. import com.google.android.maps.MapView;  
  11. import com.google.android.maps.Overlay;  
  12.   
  13. import android.content.Context;  
  14. import android.graphics.Bitmap;  
  15. import android.graphics.BitmapFactory;  
  16. import android.graphics.Canvas;  
  17. import android.graphics.Paint;  
  18. import android.graphics.Point;  
  19. import android.location.Address;  
  20. import android.location.Criteria;  
  21. import android.location.Geocoder;  
  22. import android.location.Location;  
  23. import android.location.LocationListener;  
  24. import android.location.LocationManager;  
  25. import android.os.Bundle;  
  26. import android.view.Menu;  
  27. import android.view.MenuItem;  
  28. import android.widget.TextView;  
  29.   
  30. public class GPSActivity extends MapActivity {  
  31.   
  32.     public MapController mapController;  
  33.     public MyLocationOverlay myPosition;  
  34.     public MapView myMapView;  
  35.     public static final int ZOOM_IN = Menu.FIRST;  
  36.     public static final int ZOOM_OUT = Menu.FIRST + 1;  
  37.       
  38.     @Override  
  39.     protected void onCreate(Bundle icicle) {  
  40.         // TODO Auto-generated method stub   
  41.         super.onCreate(icicle);  
  42.           
  43.         setContentView(R.layout.main);  
  44.           
  45.         LocationManager locationManager;  
  46.         String context = Context.LOCATION_SERVICE;  
  47.         locationManager = (LocationManager)getSystemService(context);  
  48.         myMapView = (MapView)findViewById(R.id.mapView1);  
  49.           
  50.         mapController = myMapView.getController();  
  51.           
  52.         //設置顯示模式   
  53.         myMapView.setSatellite(true);  
  54.         myMapView.setStreetView(true);  
  55.           
  56.         //設置縮放控制,這裡使用自己實現的縮放菜單   
  57.         myMapView.displayZoomControls(false);  
  58.         //設置使用MyLocationOverlay繪圖   
  59.         mapController.setZoom(17);  
  60.         myPosition = new MyLocationOverlay();  
  61.         List<Overlay> overlays = myMapView.getOverlays();  
  62.         overlays.add(myPosition);  
  63.         //設置Criteria(服務商)的信息   
  64.         Criteria criteria = new Criteria();  
  65.         //經度要求   
  66.         criteria.setAccuracy(Criteria.ACCURACY_FINE);  
  67.         criteria.setAltitudeRequired(false);  
  68.         criteria.setBearingRequired(false);  
  69.         criteria.setCostAllowed(false);  
  70.         criteria.setPowerRequirement(Criteria.POWER_LOW);  
  71.         //取得最好效果的criteria   
  72.         String provider = locationManager.getBestProvider(criteria, true);  
  73.         //獲得坐標相應信息   
  74.         Location location = locationManager.getLastKnownLocation(provider);  
  75.         //更新坐標相關信息   
  76.         updateWithNewLocation(location);  
  77.         //注冊一個周期的更新,3000ms更新一次   
  78.         //locationManager用來監聽定位信息的改變   
  79.         locationManager.requestLocationUpdates(provider, 30000, locationListener);  
  80.           
  81.     }  
  82.   
  83.     private void updateWithNewLocation(Location location){  
  84.         String latLongString;  
  85.         TextView myLocationText = (TextView)findViewById(R.id.textView1);  
  86.         String addressString = "沒有找到地址\n";  
  87.           
  88.         if(location != null){  
  89.             //為繪制標志的類設置坐標   
  90.             //myPosition.   
  91.             //取得經度和緯度   
  92.             Double geoLat = location.getLatitude() * 1E6;  
  93.             Double geoLng = location.getLongitude() * 1E6;  
  94.               
  95.             GeoPoint point = new GeoPoint(geoLat.intValue(), geoLng.intValue());  
  96.             //定位到指定坐標   
  97.             mapController.animateTo(point);  
  98.             double lat = location.getLatitude();  
  99.             double lng = location.getLongitude();  
  100.             latLongString = "經度:" + lat + "\n緯度:" + lng;  
  101.               
  102.             double latitude = location.getLatitude();  
  103.             double longitude = location.getLongitude();  
  104.             //根據地理環境來確定編碼   
  105.             Geocoder gc = new Geocoder(this, Locale.getDefault());  
  106.             try{  
  107.                 //取得地址相關的一些信息、經度、緯度   
  108.                 List<Address> addresses = gc.getFromLocation(latitude, longitude, 1);  
  109.                 StringBuilder sb = new StringBuilder();  
  110.                 if(addresses.size() > 0){  
  111.                     Address address = addresses.get(0);  
  112.                     for(int i = 0; i < address.getMaxAddressLineIndex(); i++){  
  113.                         sb.append(address.getAddressLine(i)).append("\n");  
  114.                         sb.append(address.getLocality()).append("\n");  
  115.                         sb.append(address.getPostalCode()).append("\n");  
  116.                         sb.append(address.getCountryName());  
  117.                         addressString = sb.toString();  
  118.                     }  
  119.                 }                 
  120.             }catch(IOException e){}  
  121.         }else{  
  122.             latLongString = "沒有找到坐標. \n";  
  123.         }  
  124.           
  125.         myLocationText.setText("你當前的坐標如下:\n" + latLongString + "\n" + addressString);  
  126.     }  
  127.       
  128.     private final LocationListener locationListener = new LocationListener() {  
  129.           
  130.         public void onStatusChanged(String provider, int status, Bundle extras) {//Provider轉態在可用、暫時不可服務和無服務三個狀態直接切換時觸發此函數   
  131.             // TODO Auto-generated method stub   
  132.               
  133.         }  
  134.           
  135.         public void onProviderEnabled(String provider) {//Provider啟用時觸發此函數,比如GPS被打開   
  136.             // TODO Auto-generated method stub   
  137.               
  138.         }  
  139.           
  140.         public void onProviderDisabled(String provider) {//Provider禁用時觸發此函數,比如GPS被關閉   
  141.             // TODO Auto-generated method stub   
  142.             updateWithNewLocation(null);  
  143.         }  
  144.           
  145.         public void onLocationChanged(Location location) {//當坐標改變時觸發事件   
  146.             // TODO Auto-generated method stub   
  147.             updateWithNewLocation(location);  
  148.         }  
  149.     };  
  150.       
  151.     @Override  
  152.     protected boolean isRouteDisplayed() {  
  153.         // TODO Auto-generated method stub   
  154.         return false;  
  155.     }  
  156.   
  157.     @Override  
  158.     public boolean onOptionsItemSelected(MenuItem item) {  
  159.         // TODO Auto-generated method stub   
  160.         super.onOptionsItemSelected(item);  
  161.           
  162.         switch(item.getItemId()){  
  163.         case ZOOM_IN:  
  164.             mapController.zoomIn();  
  165.             return true;  
  166.         case ZOOM_OUT:  
  167.             mapController.zoomOut();  
  168.             return true;  
  169.         }  
  170.           
  171.         return true;  
  172.     }  
  173.   
  174.     @Override  
  175.     public boolean onCreateOptionsMenu(Menu menu) {  
  176.         // TODO Auto-generated method stub   
  177.         super.onCreateOptionsMenu(menu);  
  178.           
  179.         menu.add(0, ZOOM_IN, Menu.NONE, "放大");  
  180.         menu.add(0, ZOOM_OUT, Menu.NONE, "縮小");  
  181.         return true;  
  182.     }  
  183.       
  184.     class MyLocationOverlay extends Overlay{  
  185.         Location mLocation;  
  186.         //更新坐標時,設置該坐標,以便畫圖   
  187.         public void setLocation(Location location){  
  188.             mLocation = location;  
  189.         }  
  190.           
  191.         @Override  
  192.         public boolean draw(Canvas canvas, MapView mapView, boolean shadow,  
  193.                 long when) {  
  194.             // TODO Auto-generated method stub   
  195.             super.draw(canvas, mapView, shadow, when);  
  196.               
  197.             Paint paint = new Paint();  
  198.             Point myScreenCoords = new Point();  
  199.             //將經緯度轉換成實際屏幕坐標   
  200.             GeoPoint tmpGeoPoint = new GeoPoint((int)(mLocation.getLatitude() * 1E6), (int)(mLocation.getLongitude() * 1E6));  
  201.             mapView.getProjection().toPixels(tmpGeoPoint, myScreenCoords);  
  202.             paint.setStrokeWidth(1);  
  203.             paint.setARGB(25525500);  
  204.             paint.setStyle(Paint.Style.STROKE);  
  205.             Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.home);  
  206.             canvas.drawBitmap(bmp, myScreenCoords.x, myScreenCoords.y, paint);  
  207.             canvas.drawText("Here am I", myScreenCoords.x, myScreenCoords.y, paint);  
  208.               
  209.             return true;  
  210.         }         
  211.     }  
  212. }  

運行效果:



注意:Loction常常獲取null,在網上查了很多資料。發現最主要是我們不能查到那個GPS提供商的能提供定位,有用while循環知道獲取停止,但是這個時間可能等待很長的時間都不能獲取到,我是采用下面的

  1. String provider = locationManager.getBestProvider(criteria, true);  
  2.         List<String> privatelist= locationManager.getAllProviders();  
  3.         for(String privates:privatelist)  
  4.         {  
  5.             Location locat=locationManager.getLastKnownLocation(privates);  
  6.             if(locat!=null)  
  7.             {  
  8.                 provider=privates;  
  9.                 break;  
  10.             }  
  11.         }  
  12.         //獲得坐標相應信息   
  13.         Location location = locationManager.getLastKnownLocation(provider);  

這樣可以檢測到,但是這個不是最優的方法,但是可以得到運行的效果。

Copyright © Linux教程網 All Rights Reserved