"You can use the comgooglemaps URL scheme to launch the Google Maps application for iPhone and do searches, directions, and map views. When Google Maps starts, your package ID is automatically sent as part of the request."
βBefore you present one of these URLs to a user in your application, you must first ensure that the application is installed. The application can check if the URL scheme with the following code is available:
[[UIApplication sharedApplication] canOpenURL: [NSURL URLWithString: @ "comgooglemaps: //"]];
"
https://developers.google.com/maps/documentation/ios/urlscheme
source share