使用以下链接作为参考https://developers.google.com/maps/documentation/ios-sdk/urlscheme打开Google地图iOS应用。
我需要检查并打开谷歌街景iOS应用。如果有人知道它的网址方案以及如何检查我的设备中的谷歌地图并使用URL方案打开它,请帮助我。
答案 0 :(得分:1)
更新了回答以反映谷歌街景应用而不是谷歌地图街景视图选项
if ([[UIApplication sharedApplication] canOpenURL:
[NSURL URLWithString:@"streetview://"]]) {
NSLog(@"Google Street View is installed");
} else {
NSLog(@"Google Street View is not installed");
}