【问题标题】:how do i draw a path from my current location to the annotation pin i have set in my mapView?如何绘制从当前位置到我在 mapView 中设置的注释引脚的路径?
【发布时间】:2016-02-29 10:21:32
【问题描述】:

我创建了一个 mapView(对不起,我将我的插座命名为 mapKit 而不是 mapView)。我获取了我当前的位置,并手动将注释针设置到了一个位置。现在我需要的是,只要我单击注释引脚(请准确地在注释引脚上,而不是 calloutAccessoryButton),我需要找到一条路径,可能使用从我当前位置到注释引脚的 polyPath。不完全像一个方向,只是一个路径,多边形覆盖。请查看我的代码并帮助我。

- (void)viewDidLoad {
    [super viewDidLoad];

    locationManager = [[CLLocationManager alloc] init];
    [locationManager requestWhenInUseAuthorization];
    locationManager.desiredAccuracy = kCLLocationAccuracyBest;
    locationManager.delegate = self;  

    [locationManager startUpdatingLocation];

    MKPointAnnotation *myAnnotation = [[MKPointAnnotation alloc]init];

    CLLocationCoordinate2D pinCoordinate;
    pinCoordinate.latitude = 51.49795;
    pinCoordinate.longitude = -0.174056;
    myAnnotation.coordinate = pinCoordinate;
    myAnnotation.title = @"Matthews Pizza";
    myAnnotation.subtitle = @"Best Pizza in Town";
    [self.mapKit addAnnotation:myAnnotation];

//    myAnnotation.coordinate = CLLocationCoordinate2DMake(51.49795, -0.174056);

    // Do any additional setup after loading the view.
}
-(void)checkStatus{

    CLAuthorizationStatus status = [CLLocationManager authorizationStatus];

    if (status==kCLAuthorizationStatusNotDetermined) {
        NSLog(@"Not Determined");
    }

    if (status==kCLAuthorizationStatusDenied) {
        NSLog(@"Denied");

    }

    if (status==kCLAuthorizationStatusRestricted) {
        NSLog(@"Restricted");

    }

    if (status==kCLAuthorizationStatusAuthorizedAlways) {
        NSLog(@"Always Allowed");

    }

    if (status==kCLAuthorizationStatusAuthorizedWhenInUse) {
        NSLog(@"NWhen In Use Allowed");

    }

}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
-(void)viewWillAppear:(BOOL)animated{
}
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{

    MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(userLocation.coordinate, 800, 800);
    [self.mapKit setRegion:[self.mapKit regionThatFits:region] animated:YES];




}


#pragma mark - CLLocationManagerDelegate

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
    NSLog(@"didFailWithError: %@", error);
    UIAlertView *errorAlert = [[UIAlertView alloc]
                               initWithTitle:@"Error" message:@"Failed to Get Your Location" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [errorAlert show];
}

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
    NSLog(@"didUpdateToLocation: %@", newLocation);
    CLLocation *currentLocation = newLocation;

    if (currentLocation != nil) {
        NSLog(@"%@",[NSString stringWithFormat:@"%.8f", currentLocation.coordinate.longitude]);
        NSLog(@"%@",[NSString stringWithFormat:@"%.8f", currentLocation.coordinate.latitude]);

    }
}



- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
    // If it's the user location, just return nil.
    if ([annotation isKindOfClass:[MKUserLocation class]])
        return nil;

    // Handle any custom annotations.
    if ([annotation isKindOfClass:[MKPointAnnotation class]])
    {
        // Try to dequeue an existing pin view first.
        MKAnnotationView *pinView = (MKAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier:@"CustomPinAnnotationView"];
        if (!pinView)
        {
            // If an existing pin view was not available, create one.
            pinView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"CustomPinAnnotationView"];

            pinView.canShowCallout = YES;
            pinView.image = [UIImage imageNamed:@"ic_map"];
            pinView.calloutOffset = CGPointMake(0, 32);
            UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
            pinView.rightCalloutAccessoryView = rightButton;
        } else {
            pinView.annotation = annotation;
        }
        return pinView;
    }
    return nil;
}


-(void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control {
    id <MKAnnotation> annotation = [view annotation];
    if ([annotation isKindOfClass:[MKPointAnnotation class]])
    {
        NSLog(@"Clicked Pizza Shop");
    }
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Disclosure Pressed" message:@"Click Cancel to Go Back" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
    [alertView show];
}

【问题讨论】:

  • 但问题是它会启动另一张地图,我必须在该地图上选择目标来源,然后按路线查找路线。我需要的是,只要我按下我的注释针,我就需要它来自动找到路线。

标签: ios objective-c iphone mkmapview mkannotation


【解决方案1】:

当点击 Annotation pin Delegate Method Will Call时

-(void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
    NSLog(@"Latitude: %f", view.annotation.coordinate.latitude);
    NSLog(@"Longitude: %f", view.annotation.coordinate.longitude);
    self.annotationViewCoordinate = view.annotation.coordinate;
    [self GetDirections:view.annotation.coordinate];
} 

绘制路径

 - (void)GetDirections:(CLLocationCoordinate2D)locationCoordinate
{
    MKPlacemark *aPlcSource = [[MKPlacemark alloc] initWithCoordinate:self.mapView.userLocation.coordinate addressDictionary:[NSDictionary dictionaryWithObjectsAndKeys:@"",@"", nil]];

    MKPlacemark *aPlcDest = [[MKPlacemark alloc] initWithCoordinate:locationCoordinate addressDictionary:[NSDictionary dictionaryWithObjectsAndKeys:@"",@"", nil]];

    MKMapItem *mpItemSource = [[MKMapItem alloc] initWithPlacemark:aPlcSource];
    [mpItemSource setName:@"Source"];

    MKMapItem *mpItemDest  = [[MKMapItem alloc] initWithPlacemark:aPlcDest];
    [mpItemDest setName:@"Dest"];

    MKDirectionsRequest *aDirectReq = [[MKDirectionsRequest alloc] init];
    [aDirectReq setSource:mpItemSource];
    [aDirectReq setDestination:mpItemDest];
    [aDirectReq setTransportType:MKDirectionsTransportTypeAutomobile];

    MKDirections *aDirections = [[MKDirections alloc] initWithRequest:aDirectReq];
    [aDirections calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse *response, NSError *error) {
        if (error) {
            NSLog(@"Error :: %@",error);
        }
        else{

            NSArray *aArrRoutes = [response routes];
            NSLog(@"Routes :: %@",aArrRoutes);

            [self.mapView removeOverlays:self.mapView.overlays];

            [aArrRoutes enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
                MKRoute *aRoute = obj;

                [self.mapView addOverlay:aRoute.polyline];

                NSLog(@"Route Name : %@",aRoute.name);
                NSLog(@"Total Distance (in Meters) :%f",aRoute.distance);
 NSArray *aArrSteps = [aRoute steps];

                NSLog(@"Total Steps : %lu",(unsigned long)[aArrSteps count]);

                [aArrSteps enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
                    NSLog(@"Rout Instruction : %@",[obj instructions]);
                    NSLog(@"Rout Distance : %f",[obj distance]);
                }];

            }];
        }
}];
}

当用户位置移动时 你可以调用方法

- (void)GetDirections:(CLLocationCoordinate2D)locationCoordinate

来自方法

 - (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
     [self GetDirections:self.annotationViewCoordinate];
}

【讨论】:

  • 我有一个注释点,正如您已经看到的那样。我如何让我在单击注释引脚后立即绘制路线。[不使用右侧或左侧标注附件按钮]。
  • 即当你点击注解 Pin Right 时你想绘制路径吗?
  • 代码更新。检查它
  • 我真是太傻了,我从来没想过注解有一个 didSelectAnnotation 委托。做到了。非常感谢。
  • 欢迎您,并在当前位置更新时编辑代码
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2017-04-15
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多