有没有办法根据您拥有的注释范围查看地图?所以这不会留下任何引脚
//Map
mapView = [[MKMapView alloc] initWithFrame:CGRectMake(0, 0, 299, 406)];
[mapView setMapType:MKMapTypeStandard];
[mapView setZoomEnabled:YES];
[mapView setScrollEnabled:YES];
MKCoordinateRegion region = { {0.0, 0.0 }, { 0.0, 0.0 } };
region.center.latitude = [latitudeNumber doubleValue];
region.center.longitude = [longitudeNumber doubleValue];
region.span.longitudeDelta = 0.01f;
region.span.latitudeDelta = 0.01f;
[mapView setRegion:region animated:YES];
[mapView setDelegate:self];
[self.view addSubview:mapView];
谢谢!
答案 0 :(得分:1)
看这篇文章: Positioning MKMapView to show multiple annotations at once
根据您添加的注释数量,您可能需要调整链接答案中的代码以循环遍历所有注释,以查找lat / long的最小/最大值。