80,471
社区成员




MapView mapview = (MapView) findViewById(R.id.map_mymap);
mapview.setClickable(true);
mapview.setEnabled(true);
mapview.setBuiltInZoomControls(true);
MapController controller = mapview.getController();
controller.setZoom(16);
MyLocationOverlay myoverlay = new MyLocationOverlay(this,mapview);
myoverlay.enableMyLocation();
mapview.getOverlays().add(myoverlay);