Given a top-left long/lat and a bottom-right long/lat how can i find out if a given long/lat falls within the rectangle ?
Ideally i would be looking at something like
bool IsWithinArea(float topLeftLat,float topLeftLong,
float bottomRightLat,float bottomRightLong,float testLat,float testLong)
Update
The one problem is that the rectangle created from the long/lat may be from a rotated map, so bottom right will not always be greater than top left...