標題: MyGoogleMap [打印本頁] 作者: ray 時間: 2012-11-7 20:34 標題: MyGoogleMap
static final int INITIAL_ZOOM_LEVEL = 20;
static final int INITIAL_LATITUDE = 25040255;
static final int INITIAL_LONGITUDE = 12152377;作者: ray 時間: 2012-11-7 20:48
mapView = (MapView)findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
複製代碼
作者: ray 時間: 2012-11-7 20:56
GeoPoint center = new GeoPoint(INITIAL_LATITUDE,INITIAL_LONGITUDE);
MyPointOverlay myPointOverlay = new MyPointOverlay(center);