I want to implement Google maps v2 and SliderMenu of jfeinstein10, I managed to implement the SliderMenu but when I want to add the map in the activity, I get error
GoogleMap map = ((SupportMapFragment) getSupportFragmentManager (). FindFragmentById (R.id.fragMapa)). GetMap ();
being more specific in getSupportFragmentManager ()
any solution for that integrate both. I put the code of the activity.
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import com.google.android.gms.maps.CameraUpdate;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.CameraPosition;
import com.google.android.gms.maps.model.LatLng;
import com.jeremyfeinstein.slidingmenu.lib.app.SlidingActivity;
public class ActivityPrincipal extends SlidingActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_activity_principal);
GoogleMap mapa = ((SupportMapFragment)getSupportFragmentManager().findFragmentById(R.id.fragMapa)).getMap();
LatLng coordenadasGT = new LatLng(15.45368,-90.485115);
CameraPosition camPos = new CameraPosition.Builder()
.target(coordenadasGT)
.zoom(8)
.build();
CameraUpdate camUpd = CameraUpdateFactory.newCameraPosition(camPos);
mapa.moveCamera(camUpd);
}
/*
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_principal, menu);
return true;
}
*/
}