如何通过两点Xcode绘制一条步行路线

时间:2013-03-25 11:08:03

标签: objective-c xcode routes cllocation polyline

如何通过两点(开始和结束)绘制步行路线。 我不会使用折线。

1 个答案:

答案 0 :(得分:1)

请查看以下教程Draw Route Between two points并检查BreadCrumb example of Apple希望它对您有所帮助!

您不得在自己的应用中使用Google指示。您可以执行此操作的唯一方法是按照以下方式将它们发送到Google地图应用程序:

- (void)getDirections {
CLLocationCoordinate2D start = { (startLatitude), (startLongitude) };
CLLocationCoordinate2D end = { (endLatitude), (endLongitude) };

NSString *googleMapsURLString = [NSString stringWithFormat:@"http://maps.google.com/?saddr=%1.6f,%1.6f&daddr=%1.6f,%1.6f&dirflg=w", start.latitude, start.longitude, end.latitude, end.longitude];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:googleMapsURLString]];

}