作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果重复这个问题,我深表歉意,但我很难尝试使用 MKDirectionsRequest 显示两地之间的路线。
MKDirectionsRequest *request = [[MKDirectionsRequest alloc] init];
request.source = [MKMapItem mapItemForCurrentLocation];
request.transportType = MKDirectionsTransportTypeAny;
request.destination = _dstItem;
request.requestsAlternateRoutes = YES;
MKDirections *directions = [[MKDirections alloc] initWithRequest:request];
// __block typeof(self) weakSelf = self;
[directions calculateDirectionsWithCompletionHandler:
^(MKDirectionsResponse *response, NSError *error) {
//stop loading animation here
if (error) {
NSLog(@"Error is %@",error);
} else {
//do something about the response, like draw it on map
MKRoute *route = [response.routes firstObject];
[self.mapView addOverlay:route.polyline level:MKOverlayLevelAboveRoads];
}
}];
MKDirectionsResponse 总是返回 nil 和错误描述
Error Domain=MKErrorDomain Code=5 "Directions Not Available"
UserInfo=0x1700f1c80 {NSLocalizedFailureReason=A route to the nearest road cannot be determined.,
MKErrorGEOError=-403, MKDirectionsErrorCode=6, NSLocalizedDescription=Directions Not Available}
最佳答案
MKDirectionsRequest 是查找两点之间路线的正确 API。 Apple 似乎还没有为印度添加路由功能。
关于ios7 - MKDirectionsResponse 总是返回 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23009151/
响应对象为 null,代码未执行。 MKPlacemark *source=[[MKPlacemark alloc]initWithCoordinate:sourceloc addressDictio
如果重复这个问题,我深表歉意,但我很难尝试使用 MKDirectionsRequest 显示两地之间的路线。 MKDirectionsRequest *request = [[MKDirections
出于学习目的,我正在尝试开发一个应用程序,它将在 MKMapView 上显示到特定点的方向。 但是,无论地址如何,DirectionsResponse 每次都会给我以下错误: 2013-12-28 1
我正在尝试学习如何在两个位置之间生成一条路线,因此我创建了一个包含假位置和其他内容的项目,这样一旦我“明白了”,我就可以在我的真实应用中实现它。 我试图在“location”和“next”之间生成一条
我是一名优秀的程序员,十分优秀!