从外部应用程序调用 iPhone 地图应用程序中的 StreetView
我正在尝试从我的应用程序对 iPhone 上的谷歌地图应用程序进行外部调用,并将其从两个纬度、经度坐标直接发送到“街景”模式。 我尝试了多种组合,但每种组合都只是将我发送到 iPhone 上的 safari 浏览器,而不是地图应用程序。
以下是其中一项尝试:
NSString * latlonString = [[NSString alloc] initWithFormat:@"http://maps.google.com/maps?f=q&source=s_q&hl=en&layer=c&cbll=%@,%@&cbp=12,261.11,,0,5", lat, long];
郑重声明,我已成功调用外部地图应用程序来获取行车路线。
有人成功地从外部应用程序调用街景模式吗?
I'm trying to make an external call to the google maps application on the iphone from my application and send it straight to "streetview" mode from two lat, lon coordinates. I've tried a variety of combinations, but each one just sends me to the safari browser on the iPhone and not to the maps application.
Here is one of those tries:
NSString * latlonString = [[NSString alloc] initWithFormat:@"http://maps.google.com/maps?f=q&source=s_q&hl=en&layer=c&cbll=%@,%@&cbp=12,261.11,,0,5", lat, long];
For the record, I've successfully been able to call the external maps application to get driving directions.
Has anyone been successful in calling street view mode from an external app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你不能。 查看 Apple 的 文档 查看地图链接的所有可用选项。
I don't think you can. Check the Apple's documentation for all available options for map links.