MonoTouch中的MKMapPointForCoordinate在哪里

Len*_*nie 1 c# mapkit xamarin.ios ios mkoverlay

我实现了一个扩展的类MKOverlay,我找不到MKMapPointForCoordinate要做的功能:

public override MKMapRect BoundingMapRect() {
    MKMapPoint upperLeft = MKMapPointForCoordinate(CLLocationCoordinate2DMake(Coordinate));
    return new MKMapRect();
}
Run Code Online (Sandbox Code Playgroud)

请告知这种方法在哪里?

我的最终结果是我想将图像作为叠加层放置在地图上.

pou*_*pou 7

在Xamarin.iOS中,本机函数MKMapPointForCoordinate被公开为MKMapPoint.FromCoordinate.