How to display the radius in MKCircle on Map in meters How to display the radius in MKCircle on Map in meters objective-c objective-c

How to display the radius in MKCircle on Map in meters


In the viewForOverlay delegate method, try setting the lineWidth of the MKCircleView to 1.

I think the default width of 0 results in the "road width".


MKCircle class definition says

radius

   The radius of the circle, measured in meters from the center point.

So your code should work fine.

Source: http://developer.apple.com/library/ios/#DOCUMENTATION/MapKit/Reference/MKCircle_class/Reference/Reference.html