在iPhone的谷歌地图上显示方向。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在iPhone的谷歌地图上显示方向。相关的知识,希望对你有一定的参考价值。

Here is a peace of code from one of my project to show you how you to show directions on the Google Map application.
  1. - (void)showDirections {
  2. if ([self.address length] == 0) return;
  3. //We create our link to the appDelegate
  4. ClubPlanetControllerAppDelegate * appDelegate = (ClubPlanetControllerAppDelegate *)[UIApplication sharedApplication].delegate;
  5.  
  6.  
  7. NSURL *myURL = [NSURL URLWithString:[NSString stringWithFormat:@"http://maps.google.com/maps?daddr==%@&saddr=%f,%f", [self.address stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding], [appDelegate.lat floatValue], [appDelegate.lon floatValue]]];
  8. [[UIApplication sharedApplication] openURL:myURL];
  9. }

以上是关于在iPhone的谷歌地图上显示方向。的主要内容,如果未能解决你的问题,请参考以下文章

在android中的谷歌地图上绘制点

谷歌地图片段显示空地图

sencha 中的谷歌地图处理

谷歌地图不显示在片段中

如何在Android的谷歌地图片段中更改默认的蓝色圆形位置图标?

另一个片段内的谷歌地图 - 像 onLocationChanged 这样的功能不起作用