有没有办法将MKPolygon
转换为UIBezierPath
?我有MKPolygon
使用纬度和经度坐标来构成它的点。这些纬度/经度坐标如何转换为UIView
上的坐标?
答案 0 :(得分:1)
MKPolygon *myPolygon;
MKPolygonView *polygonView = [[MKPolygonView alloc] initWithPolygon:myPolygon];
UIBezierPath *myBezierPath = [UIBezierPath bezierPathWithCGPath:polygonView.path];