Map Overlay Move

I am trying to create an application where a user can mark an area on a map. I want him to be able to move the marked area.

I found that there are api for adding overlays to the map, but I can not move these overlays after I put them on the map. I tried to subclass MKCircleView with my own view and implement the touchhesBegan: withEvent: method, but it never seems called.

Any ideas how this can be implemented and why it does not work this way?

Thank.

+3
source share
1 answer

Try looking at the Apple developer code for the sample called Regions. It has circles that you can drag and move.

0
source

All Articles