I have a coordinate region that I have determined contains the limits of what I want to show for my app. I have set this up as an MKCoordinateRegion with center point lat, longitude and a span. How do I determine if the current userLocation is inside of my coordinate region?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Use map rects. Here's an example using the map's current visible rect. With regards to your question, you could use convertRegion:toRectToView: to first convert your region to a MKMapRect beforehand.

MKMapPoint userPoint = MKMapPointForCoordinate(mapView.userLocation.location.coordinate);
MKMapRect mapRect = mapView.visibleMapRect;
BOOL inside = MKMapRectContainsPoint(mapRect, userPoint);
link|improve this answer
Ha, funny to get an answer so much later! Thanks, a good answer so I'll go ahead and give you the mark -- the convertRegion:toRectToView is the thing I was missing. – Alan Moore Mar 27 at 22:09
feedback

There is a simple solution to decide if a point is inside your area if the area is given by a polygon using the ray casting algorithm: See here http://en.wikipedia.org/wiki/Point_in_polygon

As a starting point use a location guaranteed to be outside your region, e.g. (geographic) north pole.

link|improve this answer
I was really looking for something in MapKit that would do the work for me! – Alan Moore Feb 1 at 14:19
feedback

Your Answer

 
or
required, but never shown

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