iOS で GoogleMap SDK を使用して、ユーザーの現在地を表示しています。ビューに Google マップが表示されていますが、マーカーが表示されません。ここで何が間違っているのかわかりません。
これが私のコードです
#import <GoogleMaps/GoogleMaps.h>
@interface firstViewController () {
// GMSMapView *mapView_;
IBOutlet GMSMapView *mapView_;
}
@end
@implementation firstViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Create a GMSCameraPosition that tells the map to display the
// coordinate -33.86,151.20 at zoom level 6.
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.86
longitude:151.20
zoom:6];
mapView_ = [GMSMapView mapWithFrame:CGRectZero camera:camera];
mapView_.myLocationEnabled = NO;
[self.view addSubview: mapView_];
// Creates a marker in the center of the map.
GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = CLLocationCoordinate2DMake(-33.86, 151.20);
marker.title = @"Sydney";
marker.snippet = @"Australia";
marker.map = mapView_;
}