Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
259 views

MKCoordinateSpan in Meters?

I need to create a MKCoordinateSpan that is about 500 meters. How do I calculate the values to pass into the MKCoordinateSpan constructor? Answers in any programming (Obj-C, .Net) language are fine. ...
1
vote
1answer
491 views

How to store current MKCoordinateRegion or zoom level?

I have an app which is providing a zoomable MKMapView to the user. I want to be able to store the user's preferred coordinates and zoom level for when the map view is first displayed. Currently, in ...
1
vote
1answer
291 views

iPhone dev - showing two locations on the map

Now I have the coordinate of two locations, let say locationA with latitude 40 and longitude -80, locationB with latitude 30 and longitude -70, I want to create a mapView that I can see both ...
0
votes
1answer
32 views

MKMapView Zoom Out without using didAddAnnotationViews:

I am tryng to find a way to do a zoom in and out via a button. If I put code within this method: didAddAnnotationViews it will set the initial zoom perfectly. I tried to get the zoom to change with ...
0
votes
2answers
1k views

Get TopLeft and BottomRight from MKCoordinateRegion MKMapView

I checked the properties in documentation for MKCoordinateRegion, MKCoordinateSpan and MKMapView to see there is a way to get the TopLeft and BottomRight Lat Long from the map view and I didn't find ...