I know this question has already been asked before, but none of the answers were really clear to me and I can\'t find good tutorial on Internet... So, I want to put Google m
First create outlet Of UIView
#import
@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet GMSMapView *mapView;
Add This in .h File
Now add this in .m file in view didload method
self.mapView.myLocationEnabled = YES;
self.mapView.mapType = kGMSTypeNormal;
self.mapView.settings.compassButton = YES;
self.mapView.settings.myLocationButton = YES;
self.mapView.delegate = self;