Eu tenho várias anotações que quero adicionar ao meu MKMapView (poderia 0-n itens, onde n é geralmente em torno de 5). Posso adicionar as anotações sem problemas, mas quero redimensionar o mapa para caber todas as anotações na tela de uma vez e não tenho certeza de como fazer isso.
Estive olhando, -regionThatFits:
mas não tenho certeza do que fazer com ele. Vou postar algum código para mostrar o que tenho até agora. Acho que isso deve ser uma tarefa geralmente simples, mas estou me sentindo um pouco sobrecarregado com o MapKit até agora.
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation{
location = newLocation.coordinate;
//One location is obtained.. just zoom to that location
MKCoordinateRegion region;
region.center = location;
//Set Zoom level using Span
MKCoordinateSpan span;
span.latitudeDelta = 0.015;
span.longitudeDelta = 0.015;
region.span = span;
// Set the region here... but I want this to be a dynamic size
// Obviously this should be set after I've added my annotations
[mapView setRegion:region animated:YES];
// Test data, using these as annotations for now
NSArray *arr = [NSArray arrayWithObjects:@"one", @"two", @"three", @"four", nil];
float ex = 0.01;
for (NSString *s in arr) {
JBAnnotation *placemark = [[JBAnnotation alloc] initWithLat:(location.latitude + ex) lon:location.longitude];
[mapView addAnnotation:placemark];
ex = ex + 0.005;
}
// What do I do here?
[mapView setRegion:[mapView regionThatFits:region] animated:YES];
}
Observe, tudo isso acontece quando recebo uma atualização de local ... Não sei se esse é um lugar apropriado para fazer isso. Se não, qual seria o melhor lugar? -viewDidLoad
?
Desde já, obrigado.