Reputation: 7462
I am trying to figure out the zoom level of an MKMapView in feet per screen inch. Has anyone done anything like this before, or know of any quick categories which would provide this type of behavior?
Upvotes: 1
Views: 338
Reputation: 50089
MKMetersPerMapPointAtLatitude / Longitude
to get meters/pointUpvotes: 1
Reputation: 5128
You can also make use of the fact that there are about 110,000 meters per degree latitude (longitude distance varies based on latitude, i.e. varying from equator to poles). You could then figure out the current vertical span and do some math on that.
Upvotes: 0