Currently, the only way I have found is this:
//The method 'each' is part of Objective Sugar [googleMapView.subviews each:^(UIView *object) { if([[[object class] description] isEqualToString:@"GMSUISettingsView"] ) { CGPoint center = object.center; center.y -= 40; //Let move it 40px up object.center = center; } }];
This works great, but an official way would be better.
This works for version 1.4.0. For previous versions, change @"GMSUISettingsView" to @"UIButton" .
source share