如何从另一个 iOS 应用打开 Google 街景应用

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

打开 google 地图 iOS 应用程序使用以下 link 作为参考 https://developers.google.com/maps/documentation/ios-sdk/urlscheme

我需要检查并打开 google 街景 iOS 应用程序。如果有人知道它的 url 方案以及如何在我的设备中检查 google 地图并使用 URL 方案打开它,请帮助我。

更新答案以反映 google 街景应用而不是 google 地图街景选项

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