Android/Summary

구글맵을 띄워보자.

gandus 2010. 7. 9. 11:27

프로젝트 생성시 버젼을 google API로 정해야 한다.

main.java

package com.gandus.googlemap;

import android.os.Bundle;
import com.google.android.maps.MapActivity;

public class main extends MapActivity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
     }

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





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"
    >
<com.google.android.maps.MapView                
    android:layout_width="fill_parent"                
    android:layout_height="fill_parent"                
    android:apiKey="0dQqTYVbsKAM_7twtZaLU5qLPYvVN30dwKk_VkA"/>
</LinearLayout>



퍼미션을 설정해야 하는데,
메니페스트 파일에서, 인터넷과 맵을 사용할수 있는 권한을 등록해야 한다.

그리고 어플리케이션에 구글 맵 API  use permission 을 설정한다.