有没有办法把MKPolygon转换成UIBezierPath?我有一个MKPolygon,它使用纬度和经度坐标来组成它的点。这些纬度/经度坐标如何转换为UIView上的坐标
发布于 2013-04-19 07:53:50
MKPolygon *myPolygon;
MKPolygonView *polygonView = [[MKPolygonView alloc] initWithPolygon:myPolygon];
UIBezierPath *myBezierPath = [UIBezierPath bezierPathWithCGPath:polygonView.path];https://stackoverflow.com/questions/16094751
复制相似问题