As user is moving i wanted to plot another mkannotation on his old position which is different than current annotation in objective-c

for which I have written code

-(void)plotDotted:(double)latitude :(double)longitude
{

    _busOldAnnotation.coordinate = CLLocationCoordinate2DMake(latitude, longitude);
    [self.sampleMap addAnnotation:_busOldAnnotation];
}
-(void)plotPoint:(double)latitude :(double)longitude 
{
    _busAnnotation.coordinate = CLLocationCoordinate2DMake(latitude, longitude);
    [self.sampleMap addAnnotation:_busAnnotation]; 
}

Annotation Delegate

-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
    static NSString *Identifier = @"driverView";


        MKAnnotationView* myAnnotation = [self.sampleMap dequeueReusableAnnotationViewWithIdentifier:Identifier];

        if (myAnnotation == nil)
        {
            myAnnotation = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:Identifier];
            //myAnnotation.enabled = YES;
        }


    CLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake(_latituDouble, _longitudeDouble);

    if (coordinate.latitude == _latituDouble && coordinate.longitude == _longitudeDouble)
    {
        myAnnotation.image = [UIImage imageNamed:@"bus_icon.png"];

    }
    else if (_busOldAnnotation)
    {
        myAnnotation.image = [UIImage imageNamed:@"blue_dot.png"];
    }


    return myAnnotation;
}

Called Functions

                                    //1. Remove
                                    [self removeAnnotation];

                                    //3. Add new
                                    [self plotPoint:latitudeDouble :longitudeDouble];

                                    //2. Add Old
                                    [self plotDotted:_latituDouble :_longitudeDouble];

                                    //4. Assign that coordinate to global
                                    _latituDouble = latitudeDouble;
                                    _longitudeDouble = longitudeDouble;

                                    [self.sampleMap reloadInputViews];

Everything is working fine that , user is moving on my map , Removing previous location, but not able to add blue_dot image after that user is moving

1

There are 1 best solutions below

2
On

Use this and see if it works

 -(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation

{

 CLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake(_latituDouble, _longitudeDouble);

if (coordinate.latitude == _latituDouble && coordinate.longitude == _longitudeDouble)
{
        static NSString *Identifier1 = @"driverView";

    MKAnnotationView* myAnnotation = [self.sampleMap dequeueReusableAnnotationViewWithIdentifier:Identifier1];

    if (myAnnotation == nil)
    {
        myAnnotation = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:Identifier];
        //myAnnotation.enabled = YES;

    }
    myAnnotation.image = [UIImage imageNamed:@"bus_icon.png"];
    return myAnnotation;


}
else if (_busOldAnnotation)
{
        static NSString *Identifier2 = @"driverView2";

    MKAnnotationView* myAnnotation = [self.sampleMap dequeueReusableAnnotationViewWithIdentifier:Identifier2];

    if (myAnnotation == nil)
    {
        myAnnotation = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:Identifier];
        //myAnnotation.enabled = YES;
    }
    myAnnotation.image = [UIImage imageNamed:@"blue_dot.png"];
    return myAnnotation;


}

 return nil;
}