Zmień pozycję przycisku „Moja lokalizacja” w interfejsie API Map Google

Korzystam z Google Maps Android API v2 i potrzebuję sposobu, aby sprawdzić pozycję przycisku „Moja lokalizacja”.

Otrzymuję przycisk „Moja lokalizacja” w ten sposób:

GooglePlayServicesUtil.isGooglePlayServicesAvailable(getApplicationContext());
final GoogleMap map = ((SupportMapFragment) getSupportFragmentManager()
        .findFragmentById(R.id.map)).getMap();

// This gets the button
map.setMyLocationEnabled(true);

questionAnswers(16)

yourAnswerToTheQuestion