MKPolygon to cover entire earth
问题 I'm trying to create an MKPolygon that will cover the entire earth, but can't find the right coordinates. my code looks like this: CLLocationCoordinate2D pathCoords[5]={ CLLocationCoordinate2DMake(0,-90), CLLocationCoordinate2DMake(0,90), CLLocationCoordinate2DMake(-180,90), CLLocationCoordinate2DMake(180,-90), CLLocationCoordinate2DMake(0,-90), }; MKPolygon *result = [MKPolygon polygonWithCoordinates:pathCoords count:5]; I've found this article that can help: http://www-01.ibm.com/support