地圖顯示的關鍵類是 AMap 類。在您的應用程序中,AMap 是地圖的對象。AMap 地圖將會經過 MapFragment 或 MapView 容器類來表現。java
AMap 類自動處理如下操做:android
1.鏈接到高德地圖服務web
2.下載地圖數據api
3.在設備屏幕上顯示地圖app
4.顯示各類控件,如縮放控件ide
5.支持各類手勢,如平移和縮放手勢code
下面以 MapView 顯示地圖爲例進行說明:orm
MapView 是 Android View 類的一個子類,它能夠幫助您在 Android View 中放置地圖,它是應用程序和窗口部件的基本構建類。MapView 做爲地圖的容器,經過 AMap 對象顯示地圖。使用 MapView 類,必須重載 Activity 生命週期的全部方法,有 onCreate(),onDestroy(),onResume(),onPause(),onSaveInstanceState()。xml
地圖顯示效果以下:對象
basicmap_activity.xml源碼:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.jt1024.mapgd.BasicMapActivity" > <com.amap.api.maps.MapView android:id="@+id/map" android:layout_width="match_parent" android:layout_height="match_parent"/> </RelativeLayout>
BasicMapActivity.java源碼:
/** * 基礎地圖——高德地圖中介紹如何使用mapview顯示地圖 * @author jiatao * @date 2015-4-28 * @version 1.0 */ package com.jt1024.mapgd; import com.amap.api.maps.AMap; import com.amap.api.maps.MapView; import android.app.Activity; import android.os.Bundle; public class BasicMapActivity extends Activity { private MapView mapView; private AMap aMap; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.basicmap_activity); mapView = (MapView) findViewById(R.id.map); mapView.onCreate(savedInstanceState);//必需要寫 init(); } /** * 初始化AMap對象 */ private void init(){ if(aMap == null){ aMap = mapView.getMap(); } } /** * 方法必須重寫 */ @Override protected void onResume() { // TODO Auto-generated method stub super.onResume(); mapView.onResume(); } /** * 方法必須重寫 */ @Override protected void onPause() { // TODO Auto-generated method stub super.onPause(); mapView.onPause(); } /** * 方法必須重寫 */ @Override protected void onSaveInstanceState(Bundle outState) { // TODO Auto-generated method stub super.onSaveInstanceState(outState); mapView.onSaveInstanceState(outState); } /** * 方法必須重寫 */ @Override protected void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); mapView.onDestroy(); } }