Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to overlay a rectangle over a Google Map and want to allow user to move and resize it with fingers.

I am not able to draw or add the rectangle over the map. I know I have to draw it using Quartz but I am not sure how will I draw it over map. Can someone please help me in overlaying this rectangle above map?

share|improve this question
You can take a view and add the MKMapView on to it.. and do your stuff – S P Varma Jan 18 at 8:40

closed as not a real question by Charles, Jim Garrison, Gajotres, Anoop Vaidya, Thor Jan 18 at 9:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

MKMapPoint points[4] = {{lat1,long1}, {lat2,long2}, {lat3,long3}, {lat4,long4}};
MKPolygon *polygon = [MKPolygon polygonWithPoints:points count:4];
[mapView addOverlay:polygon];
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.