출저 : http://googlekoreablog.blogspot.com/ 구글 한국 블로그
간단한 안드로이드 어플리 케이션
package com.hello.HelloMap;
import android.os.Bundle;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
import com.google.android.maps.Point;
public class HelloMap extends MapActivity {
MapView mapView;
MapController mapController;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
mapView = new MapView(this);
if(!mapView.isSatellite()) { mapView.toggleSatellite(); }
Point point = new Point(35122704, 129102305);
mapController = mapView.getController();
mapController.zoomTo(18);
mapController.animateTo(point);
setContentView(mapView);
}
}
소개 PPT : android.ppt