سؤال

Am implementing a class that extend MKOverlay, I can't find the MKMapPointForCoordinate function to do:

public override MKMapRect BoundingMapRect() {
    MKMapPoint upperLeft = MKMapPointForCoordinate(CLLocationCoordinate2DMake(Coordinate));
    return new MKMapRect();
}

Please advise where this method is?

My end result is that I want to place a image as a overlay on a map.

هل كانت مفيدة؟

المحلول

In Xamarin.iOS the native function MKMapPointForCoordinate is exposed as MKMapPoint.FromCoordinate.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top