我正在实现扩展MKOverlay
的类,但找不到MKMapPointForCoordinate
函数来做:
public override MKMapRect BoundingMapRect() {
MKMapPoint upperLeft = MKMapPointForCoordinate(CLLocationCoordinate2DMake(Coordinate));
return new MKMapRect();
}
请告知这种方法在哪里?
我的最终结果是我想将图像作为叠加层放置在地图上。
最佳答案
在Xamarin.iOS中,本机函数MKMapPointForCoordinate
公开为MKMapPoint.FromCoordinate
。