You have to add a UIView to your storyboard ... but after that you need to turn this simple UIView into a GMSMapView! Select the view you just viewed and open the Identity Inspector by selecting the third tab on the left in the Utilities toolbar, changing the name of the view class from UIView to GMSMapView, as shown in the screenshot below:

Your way out will not be like that
@property (strong, nonatomic) IBOutlet UIView *googleMapView;
it will be like this:
@property (strong, nonatomic) IBOutlet GMSMapView *mapView;
Your ViewDidLoad could be like this:
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude: 32.915134 longitude: -117.140269 zoom: 17]; [self.mapView animateToCameraPosition:camera]; GMSMarker *marker = [ [GMSMarker alloc] init]; marker.position = CLLocationCoordinate2DMake(32.915134, -117.140269); marker.title = @"Tet Festival 2015"; marker.snippet = @"VAYA Tet"; marker.map = self.mapView;
UPDATE
Here you have an example project (enter your key)
source share