如何通过两点(开始和结束)绘制步行路线。 我不会使用折线。
答案 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]];
}