0

我想知道为什么这不起作用,因为网络上有很多示例准确地显示了如何打开地图应用程序以及如何从起点到终点显示路线的语法。

但无论如何,这就是我想要做的:

在我的应用程序中,我有一个按钮,当按下它时,应该打开地图应用程序并显示从 A 到 B 的路线。到现在为止还挺好。唯一的事情是,我的起点是我在 x/y 坐标中的实际位置,我的终点是一个地址。所以我试图形成这样的网址:

http://maps.google.com/maps?daddr=Mariahilferstraße+123+1000+Wien&saddr=43.213646,11.491927

地图应用程序应该打开的代码是这样的:

 UIApplication *app = [UIApplication sharedApplication];
 NSMutableString *url =  @"http://maps.google.com/maps?daddr=Mariahilferstraße+123+1000+Wien&saddr=43.213646,11.491927";
 [app openURL:[NSURL URLWithString:url]];

地图应用打不开......

任何人都可以在这里看到问题并可以帮助我吗?

非常感谢!

4

1 回答 1

1

对于地理编码器(是一个简单的地理编码器,而不是我评论的反向,反向用于获取地址形式 lat/log)

[fgeo geocodeAddressString:@"Boston, MA"
            completionHandler:^(NSArray *placemarks, NSError *error){

             // Make sure the geocoder did not produce an error
             // before continuing
             if(!error){

                 // Iterate through all of the placemarks returned
                 // and output them to the console
                 for(CLPlacemark *placemark in placemarks){
                     NSLog(@"%@",[placemark description]);
                 }
             }
             else{
                 // Our geocoder had an error, output a message
                 // to the console
                 NSLog(@"There was a forward geocoding error\n%@",
                         [error localizedDescription]);
             }
         }
   ];

教程

于 2012-09-14T09:45:42.010 回答