1

有没有办法将 a 转换MKPolygon为 a UIBezierPath?我有一个MKPolygon使用纬度和经度坐标来组成它的点。这些纬度/经度坐标如何转换为 a 上的坐标UIView

4

1 回答 1

1
MKPolygon *myPolygon;

MKPolygonView *polygonView = [[MKPolygonView alloc] initWithPolygon:myPolygon];

UIBezierPath *myBezierPath = [UIBezierPath bezierPathWithCGPath:polygonView.path];
于 2013-04-18T23:53:49.543 回答