通过谷歌地图API查找路线时添加地址注释

发布于 2024-12-06 09:48:39 字数 502 浏览 2 评论 0原文

我正在使用谷歌地图来获取从一个地方到另一个地方的路线。这是代码

NSString *mapAPIString = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f",
    sourceAddress.coordiate.latitude,
    sourceAddress.coordiate.longitude,
    destAddress.coordiate.latitude,
    destAddress.coordiate.longitude,
    ];
NSURL *url = [[NSURL alloc] initWithString:mapAPIString];
[[UIApplication sharedApplication] openURL:url];

代码运行完美。但这两个地址在 iOS 地图应用中都被标记为“未知地址”。是否可以为每个地址添加自定义标题?

I'm using google maps to get directions from one place to another. Here is the code

NSString *mapAPIString = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f",
    sourceAddress.coordiate.latitude,
    sourceAddress.coordiate.longitude,
    destAddress.coordiate.latitude,
    destAddress.coordiate.longitude,
    ];
NSURL *url = [[NSURL alloc] initWithString:mapAPIString];
[[UIApplication sharedApplication] openURL:url];

The code works perfect. But both addresses are marked as 'Unknown address' in iOS Map App. Is it possible to add custom title for each address ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

大海や 2024-12-13 09:48:39

iOS 6 仍处于 NDA 之下,但如果您有权访问文档,请查看它们,您可能会找到有关此问题的有用信息。

iOS 6 is still under NDA, but if you have access to the docs have a look at them and you will probably find useful information for this problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文