I added #import to my .h
Why does this XCODE not recognize 'GMSMarker' but does recognize GSMMarkerOptions?
this does not work (from documentation):
CLLocationCoordinate2D position = CLLocationCoordinate2DMake(0, 0);
GMSMarker *marker = [GMSMarker markerWithPosition:position];
marker.title = @"Hello World";
marker.map = mapView_;
this works fine:
GMSMarkerOptions *options = [[GMSMarkerOptions alloc] init];
options.title = @"gsmmarkeroptions does exist";