I\'m using the current version 1.1.2 of Google Maps SDK for iOS. The map only displays the Google logo, the current location and the added marker. But no map content whatsoe
Found the solution myself.
I'm using Auto Layout. Apparently, in -viewDidLoad
the Auto Layout hasn't yet done its work and my GMSMapView
still had a CGRectZero frame. GMSMapView
seems to react very picky on a zero frame.
[self.view layoutIfNeeded];
prior to setting the camera solved the problem for me.