If the distance corresponding to one degree of longitude is a function of latitude, why do you have to specify longitudeDelta and latitudeDelta when calling MKCoordinateSpanMake in the iOS MapKit? Moreover, how am I supposed to know what the correct ratio is?
|
feedback
|
|
You don't need to specify both nor do you need to pre-calculate the ratio. Both parameters are provided as a convenience if you have a previously saved span or you happen to know the exact span you want. No matter what values you pass, the map view will still adjust the span so that it fits the map view frame and matches the zoom level that it can display. You can in fact pass To see what the adjusted span will be (or if you want to pre-calculate it), call the Also, after calling | |||
|
feedback
|