Arasuvel
Arasuvel

Reputation: 3012

How to Open Google Street View App from an another iOS App

To open the google maps iOS app using the following link as the reference https://developers.google.com/maps/documentation/ios-sdk/urlscheme.

I have a requirement to check and open the google street view iOS app. Please help me if anyone know the url scheme for it and how to check the google map in my device and open it using URL scheme.

Upvotes: 1

Views: 631

Answers (1)

valosip
valosip

Reputation: 3402

Updated answer to reflect google street views app instead of google maps street view option

if ([[UIApplication sharedApplication] canOpenURL:
     [NSURL URLWithString:@"streetview://"]]) {
  NSLog(@"Google Street View is installed");
} else {
  NSLog(@"Google Street View is not installed");
}

Upvotes: 1

Related Questions