Posts

Load Places Automatically By Using Google Maps

Image
Loading Places By Typing............. *First Install Pods. *After Installing Pods, Proceed For Below #import  <GoogleMaps/GoogleMaps.h> #pragma mark- Google Api - ( void )viewController:( GMSAutocompleteViewController  *)viewController didAutocompleteWithPlace:( GMSPlace  *)place {           txtState . text = @"" ;      txtZip . text = @"" ;      txtCity . text = @"" ;      //IPHONE      _stateTFIPhone . text = @"" ;      _zipTFIPhone . text = @"" ;      _cityTFIPhone . text = @"" ;           // Do something with the selected place.      NSLog ( @"Place name %@" , place. name );      NSLog ( @"Place address %@" , place. formattedAddress );      NSLog ( @"Place attributions %@" , place. attributions . string );      NSLog ( @"lat and log%f" , place. coordin...