13

我正在使用 MKDirectionsRequest 在两点之间查找 MKRoute。响应将使用以下代码显示在 MKMapView 上:

MKDirections *directions = [[MKDirections alloc] initWithRequest:request];
    [directions calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse *response, NSError *error)
     {
         if (error)
         {
             NSLog(@"Error : %@", error);
         }
         else
         {
             [_mapView removeOverlays:_mapView.overlays];
             for (MKRoute *route in response.routes)
             {
                 [_mapView insertOverlay:route.polyline atIndex:0 level:MKOverlayLevelAboveRoads];
             }
         }
     }];

我的问题是,如果用户正在移动,是否有适当的方法来更新 MKRoute。我正在使用的自动取款机

- (void)mapView:(MKMapView *)aMapView didUpdateUserLocation:(MKUserLocation *)aUserLocation

识别运动,在这种方法中,我删除了 MKRoute 覆盖并计算并添加新的用户位置。我想知道是否有一种方法可以只计算一次路线并以编程方式更新覆盖?

编辑: 我在 Apples Dev Docs 中找到了这个https://developer.apple.com/library/ios/documentation/MapKit/Reference/MKRouteStep_class/Reference/Reference.html#//apple_ref/occ/cl/MKRouteStep 。我想我必须做类似的事情

for (MKRoute *route in response.routes)
{
   for (MKRouteStep *step in route.steps) 
   {
      [_mapView insertOverlay:step.polyline atIndex:0 level:MKOverlayLevelAboveRoads];
   }
}

但是我如何识别实际用户位置背后的步骤?

编辑:另一种选择可能是使用触发事件的计时器(删除旧覆盖并添加新覆盖)。你怎么看?

[NSTimer scheduledTimerWithTimeInterval:15 target:self selector:@selector(addRouteOverlay) userInfo:nil repeats:YES];
4

2 回答 2

0

下面的链接包含在 MKMapView 上显示方向的示例代码,我们只需要在其中传递纬度和经度值。

https://github.com/kadirpekel/MapWithRoutes

于 2013-12-19T11:59:12.990 回答
-2

我有一个很好的解决方案来做这种工作。

简单地说,使用 lat(如 -34.059811)和 long(如 150.769238)获取如下所示的目标位置。

CLLocation  *destinationLocation=[[CLLocation alloc] initWithLatitude:-34.059811 longitude:150.769238];

并在下面的url字符串中传递这个lat long,你可以直接在字符串中传递这个lat long,

NSString* strLink = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=Current+Location&daddr=%f,%f",destinationLocation.latitude,destinationLocation.longitude];

现在做一个网址,

NSURL *url = [NSURL URLWithString: [strLink stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]];

在浏览器或UIWebView中打开此 url并使用计时器刷新该页面并查看魔术,路线将根据当前位置和目的地位置自动更新,您无需每次都更新当前位置。

谢谢。

于 2015-07-02T11:30:27.883 回答