I am a real Google Maps API noob, so any help is appreciated. What I want to see here is that when I open my app, the camera needs to move directly to my current location and place the blue dot. How do I manage to do that?
I have made an example code so that everyone can understand it and implement to their code when needed:
GoogleMap map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.general_map)).getMap();
map.setMapType(GoogleMap.MAP_TYPE_HYBRID);
if( helper.isGPSEnabled() ){
map.move... // move directly to my current position
}
Help please...