I am trying to load places inside Google Map View for iOS6. How to set the frame for the Map ? Currently it is fullscreen
-(void)loadView { GMSCameraPos
You need to do like this
-(void)loadView { GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:10.00989 longitude:76.316142 zoom:15]; mapView_ = [GMSMapView mapWithFrame:self.newView.bounds camera:camera]; [self.view addSubview:newView]; [self.newView addSubview:mapView_]; }