GoogleMapsDirection 为 Google 方向服务 API 提供包装。您可以在以下位置找到更多有关此服务的详细信息:https://developers.google.com/maps/documentation/directions/
此服务是一个单例,您可以使用以下方式轻松调用:
[[GMDirectionService sharedInstance] getDirectionsFrom:origin to:destination succeeded:^(GMDirection *directionResponse) {
if ([directionResponse statusOK]){
NSLog(@"Duration : %@", [directionResponse durationHumanized]);
NSLog(@"Distance : %@", [directionResponse distanceHumanized]);
}
} failed:^(NSError *error) {
NSLog(@"Can't reach the server")
}];
只需运行
pod install
版权所有 © 2013 Djengo
任何获得此软件及其相关文档文件(“软件”)副本的个人,均可免费获得在此软件上不受限制的处理权,包括但不限于使用、复制、修改、合并、发布、分发、再许可和/或销售软件副本的权利,并向提供软件的个人或实体授予这样做,前提是以下条件
上述版权声明和本许可声明应包含在软件的所有副本或实质性部分中。
本软件按“原样”提供,不提供任何明示或暗示的保证,包括但不限于适销性、针对特定目的的适用性和非侵权性保证。在任何情况下,作者或版权所有者均不对任何索赔、损失或其他责任负责,不论是因为合同、侵权或其他原因而产生的,无论是与软件有关、通过使用或与其他方式使用本软件有关还是由此产生。