如何从另一个iOS应用程序打开Goog​​le街景应用程序

时间:2016-01-22 12:37:10

标签: ios objective-c google-maps google-street-view

使用以下链接作为参考https://developers.google.com/maps/documentation/ios-sdk/urlscheme打开Goog​​le地图iOS应用。

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

1 个答案:

答案 0 :(得分:1)

更新了回答以反映谷歌街景应用而不是谷歌地图街景视图选项

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