教你做android 上的google map 地圖

來源:互聯網
上載者:User

tank 教你做在android上的簡單的google map程式

第一步:申請google key
1.找debug.keystore的路徑
myeclipse中
window -->preferences -->android-->build-->default debug keystore
default debug keystore ="C:\Documents and Settings\Administrator\.android\debug.keystore"
cmd 中:
keytool -list -alias androiddebugkey -keystore "C:\Documents and

Settings\Administrator\.android\debug.keystore"
輸入:
android
就會得到指紋     7A:71:D1:*:EC:40:*:18:52:0A:08:B1:05:*:*:*

申請GOOGEL KEY 網址:http://code.google.com/intl/zh-CN/android/add-ons/google-apis/maps-api-

signup.html,輸入後註冊一個帳號就可以得到 key了

第二步:
建立工程,注意在建立android project中build target中一定 要選google apis

前面自己的SDK因為安裝沒有完全所以build target中沒有google apis,害自己困惱了點時間
OK沒有的話重新安裝一下SDK

建立一個類繼承mapactivity

不多說貼源碼:

package com.android.google.tank;

import java.util.List;

import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;
import com.google.android.maps.OverlayItem;

public class MyGoogleMap extends MapActivity {
private MapView mapView;
private MapController mc;

@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}

@Override
protected void onCreate(Bundle icicle) {
// TODO Auto-generated method stub
super.onCreate(icicle);

setContentView(R.layout.main);


mapView = (MapView) findViewById(R.id.map);
mapView.setTraffic(true);//交通模式
mapView.setStreetView(false);//街道模式
mapView.setSatellite(false);//衛星模式
mc = mapView.getController();

GeoPoint gp = new GeoPoint((int) (31.132259 * 1000000),
(int) (121.180762 * 1000000)); // 地理座標 上海
mc.animateTo(gp);
mc.setZoom(10);//縮放比例
//添加縮放功能事件
//放大
Button btnBig=(Button) findViewById(R.id.btnBig);
btnBig.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
mapView.getController().setZoom(mapView.getZoomLevel()+1);
}
});
//縮小
Button btnSmall=(Button) findViewById(R.id.btnSmall);
btnSmall.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
// TODO Auto-generated method stub
mapView.getController().setZoom(mapView.getZoomLevel()-1);
}
});


}

}





在Androidmanifest.xml中配置許可權和google的載入包:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.google.tank" android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<!--訪問網路的許可權-->
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps" />
<!--載入google包-->
<activity android:name="com.android.google.tank.MyGoogleMap"
android:label="MapsDemo">
<intent-filter>
<category android:name="android.intent.category.LAUNCHER"></category>
<action android:name="android.intent.action.MAIN"></action>
</intent-filter>
</activity>
</application>


</manifest>

main.xml中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">

<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<Button android:id="@+id/btnBig" android:text="放大"
android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:id="@+id/btnSmall" android:text="縮小"
android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</LinearLayout>
<com.google.android.maps.MapView
android:id="@+id/map" android:layout_width="match_parent"
android:layout_height="match_parent" android:enabled="true"
android:clickable="true" android:apiKey="你申請的goole key" />

</LinearLayout>

ok 了,點擊運行,就可以看到很cool的google地圖了!

不過注意,一定要是可以串連網路的,模擬器要可以上網!模擬器的平台也要選擇google api

下幾篇我將貼出在google上自訂標註功能,和 如何擷取gps自己的位置(經緯度!)

效果

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.