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

Android定位和地圖開發實例

在Android開發中地圖和定位是很多軟件不可或缺的內容,這些特色功能也給人們帶來了很多方便。

首先介紹一下地圖包中的主要類:

MapController :  主要控制地圖移動,伸縮,以某個GPS坐標為中心,控制MapView中的view組件,管理Overlay,提供View的基本功能。使用多種地圖模式(地圖模式(某些城市可實時對交通狀況進行更新),衛星模式,街景模式)來查看Google Map。常用方法:animateTo(GeoPoint point)  setCenter(GeoPoint point)  setZoom(int zoomLevel) 等。

Mapview  : 是用來顯示地圖的view, 它派生自android.view.ViewGroup。當MapView獲得焦點,可以控制地圖的移動和縮放。地圖可以以不同的形式來顯示出來,如街景模式,衛星模式等,通過setSatellite(boolean)  setTraffic(boolean), setStreetView(boolean) 方法。

Overlay   : 是覆蓋到MapView的最上層,可以擴展其ondraw接口,自定義在MapView中顯示一些自己的東西。MapView通過MapView.getOverlays()對Overlay進行管理。

Projection :MapView中GPS坐標與設備坐標的轉換(GeoPoint和Point)。

定位系統包中的主要類:

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

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

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

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

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

 

         下面開始地圖定位實例的開發,在開發地圖前需要 獲取Android 地圖 API 密鑰  網上有很多資料,這裡就不再復述。

         首先要在manifest.xml中設置全相應的權限和maps庫:

         [html]

  1. <application  
  2.         android:icon="@drawable/ic_launcher"  
  3.         android:label="@string/app_name" >  
  4.         <activity  
  5.             android:label="@string/app_name"  
  6.             android:name=".MyMapActivity" >  
  7.             <intent-filter >  
  8.                 <action android:name="android.intent.action.MAIN" />  
  9.   
  10.                 <category android:name="android.intent.category.LAUNCHER" />  
  11.             </intent-filter>  
  12.         </activity>  
  13. <span style="color:#FF6666;">  
  14.         <uses-library android:name="com.google.android.maps" /></span>  
  15.     </application>  
  16.   
  17.  <span style="color:#FF6666;">   <uses-permission android:name="android.permission.INTERNET" />  
  18.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />  
  19.     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /></span>  
     在上面我標紅的千萬不要忘記。

      layout下的main.xml:

    [html]

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <com.google.android.maps.MapView  
  8.                  android:id="@+id/mapview"  
  9.                  android:layout_width="fill_parent"  
  10.                  android:layout_height="fill_parent"  
  11.                  android:apiKey="008uu0x2a7GWlK2LzCW872afBAPLhJ-U2R26Wgw"  
  12.                  />  
  13.   
  14. </LinearLayout>  
       下面是核心代碼,重要的地方我做了注釋:

       [html]

  1. public class MyMapActivity extends MapActivity {  
  2.     /** Called when the activity is first created. */  
  3.     private MapController mapController;  
  4.     private MapView mapView;  
  5.     private MyOverLay myOverLay;  
  6.        
  7.     @Override  
  8.     public void onCreate(Bundle savedInstanceState) {  
  9.         super.onCreate(savedInstanceState);  
  10.         setContentView(R.layout.main);  
  11.          
  12.         LocationManager locationManager=(LocationManager) getSystemService(Context.LOCATION_SERVICE);  
  13.         mapView=(MapView) this.findViewById(R.id.mapview);  
  14.         //設置交通模式  
  15.         mapView.setTraffic(true);  
  16.         //設置衛星模式  
  17.         mapView.setSatellite(false);  
  18.         //設置街景模式  
  19.         mapView.setStreetView(false);  
  20.         //設置縮放控制  
  21.         mapView.setBuiltInZoomControls(true);  
  22.         mapView.setClickable(true);  
  23.         mapView.setEnabled(true);  
  24.         //得到MapController實例   
  25.         mapController=mapView.getController();  
  26.         mapController.setZoom(15);  
  27.           
  28.         myOverLay=new MyOverLay();  
  29.         List<Overlay> overLays=mapView.getOverlays();  
  30.         overLays.add(myOverLay);  
  31.           
  32.         Criteria criteria=new Criteria();  
  33.         criteria.setAccuracy(Criteria.ACCURACY_FINE);  
  34.         criteria.setAltitudeRequired(false);  
  35.         criteria.setBearingRequired(false);  
  36.         criteria.setCostAllowed(false);  
  37.         criteria.setPowerRequirement(Criteria.POWER_LOW);  
  38.         //取得效果最好的Criteria  
  39.         String provider=locationManager.getBestProvider(criteria, true);  
  40.         //得到Location  
  41.         Location location=locationManager.getLastKnownLocation(provider);  
  42.         updateWithLocation(location);  
  43.         //注冊一個周期性的更新,3秒一次  
  44.         locationManager.requestLocationUpdates(provider, 3000, 0, locationListener);  
  45.           
  46.     }  
  47.     @Override  
  48.     public boolean onCreateOptionsMenu(Menu menu) {  
  49.         // TODO Auto-generated method stub  
  50.         menu.add(0, 1, 1, "交通模式");  
  51.         menu.add(0,2,2,"衛星模式");  
  52.         menu.add(0,3,3,"街景模式");  
  53.           
  54.         return super.onCreateOptionsMenu(menu);  
  55.     }  
  56.     @Override  
  57.     public boolean onOptionsItemSelected(MenuItem item) {  
  58.         // TODO Auto-generated method stub  
  59.          super.onOptionsItemSelected(item);  
  60.          switch (item.getItemId()) {  
  61.         case 1://交通模式  
  62.             mapView.setTraffic(true);  
  63.             mapView.setSatellite(false);  
  64.             mapView.setStreetView(false);  
  65.             break;  
  66.         case 2://衛星模式  
  67.             mapView.setSatellite(true);  
  68.             mapView.setStreetView(false);  
  69.             mapView.setTraffic(false);  
  70.             break;  
  71.         case 3://街景模式  
  72.             mapView.setStreetView(true);  
  73.             mapView.setTraffic(false);  
  74.             mapView.setSatellite(false);  
  75.             break;  
  76.         default:  
  77.             mapView.setTraffic(true);  
  78.             mapView.setSatellite(false);  
  79.             mapView.setStreetView(false);  
  80.             break;  
  81.         }  
  82.         return true;  
  83.     }  
  84.     private void updateWithLocation(Location location){  
  85.         if(location!=null){  
  86.             //為繪制類設置坐標  
  87.             myOverLay.setLocation(location);  
  88.             GeoPoint geoPoint=new GeoPoint((int)(location.getLatitude()*1E6), (int)(location.getLongitude()*1E6));  
  89.             //定位到指定的坐標  
  90.             mapController.animateTo(geoPoint);  
  91.             mapController.setZoom(15);  
  92.         }  
  93.     }  
  94.     private final LocationListener locationListener=new LocationListener() {  
  95.           
  96.         @Override  
  97.         public void onStatusChanged(String provider, int status, Bundle extras) {  
  98.             // TODO Auto-generated method stub  
  99.               
  100.         }  
  101.           
  102.         @Override  
  103.         public void onProviderEnabled(String provider) {  
  104.             // TODO Auto-generated method stub  
  105.               
  106.         }  
  107.           
  108.         @Override  
  109.         public void onProviderDisabled(String provider) {  
  110.             // TODO Auto-generated method stub  
  111.               
  112.         }  
  113.         //當坐標改變時出發此函數  
  114.         @Override  
  115.         public void onLocationChanged(Location location) {  
  116.             // TODO Auto-generated method stub  
  117.             updateWithLocation(location);  
  118.         }  
  119.     };  
  120.     class MyOverLay extends Overlay{  
  121.           
  122.         private Location location;  
  123.         public void setLocation(Location location){  
  124.             this.location=location;  
  125.         }  
  126.           
  127.         @Override  
  128.         public boolean draw(Canvas canvas, MapView mapView, boolean shadow,  
  129.                 long when) {  
  130.             // TODO Auto-generated method stub  
  131.             super.draw(canvas, mapView, shadow);  
  132.             Paint paint=new Paint();  
  133.             Point myScreen=new Point();  
  134.             //將經緯度換成實際屏幕的坐標。  
  135.             GeoPoint geoPoint=new GeoPoint((int)(location.getLatitude()*1E6), (int)(location.getLongitude()*1E6));  
  136.             mapView.getProjection().toPixels(geoPoint, myScreen);  
  137.             paint.setStrokeWidth(1);  
  138.             paint.setARGB(255, 255, 0, 0);  
  139.             paint.setStyle(Paint.Style.STROKE);  
  140.             Bitmap bmp=BitmapFactory.decodeResource(getResources(), R.drawable.mypicture);  
  141.             //把這張圖片畫到相應的位置。  
  142.             canvas.drawBitmap(bmp, myScreen.x, myScreen.y,paint);  
  143.             canvas.drawText("天堂沒有路", myScreen.x, myScreen.y, paint);  
  144.             return true;  
  145.               
  146.         }  
  147.     }  
  148.     @Override  
  149.     protected boolean isRouteDisplayed() {  
  150.         // TODO Auto-generated method stub  
  151.         return false;  
  152.     }  
  153.     @Override  
  154.     public boolean onKeyDown(int keyCode, KeyEvent event) {  
  155.         // TODO Auto-generated method stub  
  156.   
  157.         if (keyCode == KeyEvent.KEYCODE_BACK) {  
  158.             AlertDialog.Builder builder = new AlertDialog.Builder(this);  
  159.             builder.setMessage("你確定退出嗎?")  
  160.                     .setCancelable(false)  
  161.                     .setPositiveButton("確定",  
  162.                             new DialogInterface.OnClickListener() {  
  163.                                 public void onClick(DialogInterface dialog,  
  164.                                         int id) {  
  165.                                     MyMapActivity.this.finish();  
  166.                                     android.os.Process  
  167.                                             .killProcess(android.os.Process  
  168.                                                     .myPid());  
  169.                                       android.os.Process.killProcess(android.os.Process.myTid());  
  170.                                       android.os.Process.killProcess(android.os.Process.myUid());  
  171.                                 }  
  172.                             })  
  173.                     .setNegativeButton("返回",  
  174.                             new DialogInterface.OnClickListener() {  
  175.                                 public void onClick(DialogInterface dialog,  
  176.                                         int id) {  
  177.                                     dialog.cancel();  
  178.                                 }  
  179.                             });  
  180.             AlertDialog alert = builder.create();  
  181.             alert.show();  
  182.             return true;  
  183.         }  
  184.   
  185.         return super.onKeyDown(keyCode, event);  
  186.     }  
  187. }  
接下來看一下運行後效果:

      

     可以放大縮小:

  

    可是使用menu鍵,切換不同的模式:

   

   上面是切換到了衛星模式。由於地圖需要耗費大量的網絡資源,如果網絡比較慢的話會等待很長時間。

Copyright © Linux教程網 All Rights Reserved