1

以下代码以正确的位置和正确的缩放打开地图应用程序,但是如何让地图在该确切位置放置一个图钉?

    [[UIApplication sharedApplication] openURL: [NSURL URLWithString:
                                             [NSString stringWithFormat:@"http://maps.google.com/maps?ll=%f,%f&z=%d",
                                              self.latitude,
                                              self.longitude,
                                              17]] ];
4

1 回答 1

1

尝试基于查询的链接:

http://maps.google.com/maps?q=asdsad@%f,%f&z=%d

例子:

http://maps.google.com/maps?q=aplace@12,13&z=5

于 2012-09-06T20:48:31.837 回答