I got to draw a circle on my map, it has to be about 1,8 miles centered on a point.. How can I do it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Basically you need to do 2 steps:
circleWithCenterCoordinate:radius:method and add it to your mapView (usingaddOverlay:method)mapView:viewForOverlay:method, create and setupMKCircleViewinstance there and return itIf you have different overlay types you may need to perform some type-checks in delegate method to create overlay views appropriate for each type of overlay.