DidSelectAnnotationView 注释点击没有正确响应

DidSelectAnnotationView annotation tap not responding properly

我有自定义注释,我有来自 MKPointAnnotation 的子类。添加那些工作正常。我还需要检测 Annotation select 方法。问题是当我点击注释时,它一开始并没有点击 "DidSelectAnnotationView"。如果我使用另一个注释,如 userLocation 注释,则 "DidSelectAnnotationView" 命中。在调试时,它显示注释视图的坐标不是用户位置,而是我之前点击的注释。之后,当我点击我的自定义注释时,它会点击方法,并且方法的坐标不是 userLocation 的坐标。我已经添加了我的代码,有人可以查看我遗漏的部分吗?

override public MKAnnotationView GetViewForAnnotation(MKMapView mapView, IMKAnnotation annotation)
    {
        string resuseId = "customAnnotation";

        MKAnnotationView annotationView = mapView.DequeueReusableAnnotation(resuseId);

        if (ThisIsTheCurrentLocation(mapView, annotation))
        {
            return null;
        }

        if (annotationView == null)
        {
            if (annotation is CustomAnnotation)
            {

                switch (CustomAnnotation.MarkerType)
                {
                    case MyMarkerType.Note:
                        annotationView = new MKAnnotationView(annotation, resuseId);
                        annotationView.Image = UIImage.FromBundle("Message");
                        annotationView.CanShowCallout = false;
                        annotationView.Enabled = true;
                        break;
                    case MyMarkerType.Photo:
                        annotationView = new MKAnnotationView(annotation, resuseId);
                        annotationView.Image = UIImage.FromBundle("Photo");
                        annotationView.CanShowCallout = false;
                        break;
                    case MyMarkerType.Story:
                        annotationView = new MKAnnotationView(annotation, resuseId);
                        var Img = UIImage.FromBundle("Story");
                        annotationView.CanShowCallout = false;
                        break;
                    case MyMarkerType.Custom:
                        annotationView = new MKAnnotationView(annotation, resuseId);
                        //using (var data = NSData.FromArray(CustomAnnotation.WayPoint.Image))
                        //{
                        //    var image = UIImage.LoadFromData(data);
                        //        annotationView.Image = image;
                        //}
                        NSData data = NSData.FromArray(CustomAnnotation.WayPoint.Image);
                        UIImage image = UIImage.LoadFromData(data);
                       // UIImage finalImage = image.MaxResizeImage(21f, 20f);
                        annotationView.Image = image;
                        annotationView.CanShowCallout = false;
                        break;
                    default:
                        annotationView = new MKAnnotationView(annotation, resuseId);
                        //var imaget = FromUrl(CustomAnnotation.WayPoint.IconUrl);
                        //annotationView.Image = imaget;
                        break;
                }
            }

            else{
                annotationView.Annotation = annotation;
                annotationView.CanShowCallout = false;

                //(annotationView as MKPinAnnotationView).AnimatesDrop = false; // Set to true if you want to animate the pin dropping
                //(annotationView as MKPinAnnotationView).PinTintColor = UIColor.Red;
                annotationView.SetSelected(false, false);
            }

        }

        return annotationView;

    }

还有我的 DidSelect 方法

public override void DidDeselectAnnotationView(MKMapView mapView, MKAnnotationView view)
    {

        if ( view.Annotation.Coordinate.Latitude == mapView.UserLocation.Coordinate.Latitude){

            return;
        }

        CLLocationCoordinate2D coordinates = view.Annotation.Coordinate;
        mapView.DeselectAnnotation(view.Annotation, false);
        // GetAnnotationClickInfo.Invoke(coordinates);


    }

检查你的代码后,我认为 annotationView 初始化时有误,你应该将 annotationView.Annotation = annotation; 放在条件 if (annotationView == null).

之外

修改您的代码:

if (annotationView == null)
{
    if (annotation is CustomAnnotation)
    {
       //custom view logic
    }
    else  //not custom view
    {
        annotationView = new MKPinAnnotationView(annotation, annotationIdentifier);
    }
}
else
{
    annotationView.Annotation = annotation;
}

annotationView.CanShowCallout = false;
//(annotationView as MKPinAnnotationView).AnimatesDrop = false; // Set to true if you want to animate the pin dropping
//(annotationView as MKPinAnnotationView).PinTintColor = UIColor.Red;
annotationView.SetSelected(false, false);

使用DidSelectAnnotationView方法,
不是 DidDeselectAnnotationView.

public override void DidSelectAnnotationView(MKMapView mapView, MKAnnotationView view)