I wanted to display Google map in a map view on which I want to draw a polygon/circle.
Can any body help me out in this?
Thanks in advance
|
I wanted to display Google map in a map view on which I want to draw a polygon/circle. Can any body help me out in this? Thanks in advance |
||||
|
|
|
The way I'm reading your question is that you want to programmatically draw the polygon on the map. For this, consult the Apple docs on MapKit. You don't need to add transparent views over the MapKit map (
Then, if you want to customize the look (colors, stroke, etc.) of the overlay, you implement the
Of course, always remember to actually assign the map instance's delegate to your view controller (MKMapViewDelegate), either in the interface builder, or in code (e.g. |
||||
|
|
|
I used ideas from this persons blog post to accomplish this. It basically involves adding a transparent view over the map. The map then allows you to convert locations to points on the view. Let me know if the site does not help you and I can try and dig up an example from my code. |
|||
|
|