This is the code in my viewDidLoad method. I am trying to prevent the Google Maps display from taking up the whole screen, but this code isn't working. I do not want to have to make two separate UIViews to display so is there an easier way to do this.
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.86
longitude:151.20
zoom:6];
mapView_ = [GMSMapView mapWithFrame:CGRectMake(0.0, 0.0, 320.0, 400.0) camera:camera];
mapView_.myLocationEnabled = YES;
mapView_.delegate = self;
self.view = mapView_;