我想展示一下开始和之间的路径。为地图插入的结束位置。我怎么能完成整个过程?虽然我得到的是纬度和经度,但它没有显示路径经度适当。
答案 0 :(得分:1)
NSString *urlstring=[NSString stringWithFormat:@"http://maps.google.com/?saddr=%f,%f&daddr=%f,%f",sourcelocation.latitude,sourcelocation.longitude,destinationlocation.latitude,destinationlocation.longitude];
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:urlstring]];