package com.mapGG;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;

public class mapGG02 extends MapActivity 
{

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.layout02);
    // TODO Auto-generated method stub
    
}
@Override
protected boolean isRouteDisplayed()
{
return false;
}

}
소스는 이거이고

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:clickable="true"
android:apiKey=" API 키" />
</LinearLayout>

이거인데 API에 제대로 API 키 입력했는데 하얗게 나옵니다 지도가 왜그런건가요~?

아래 이클립스 오류 메시지는
[2010-10-23 13:19:54 - DeviceMonitor]Sending jdwp tracking request failed!

라고 나옵니다 ㅠㅠ