किसी कारण से, यह मेरे लिए काम नहीं किया। यह मेरे निर्देशांक (0.0000, 0.0000) के लिए ले रहा है। यदि आप इसे बाहर की जाँच करने का मौका दिया नीचे मेरी कोड है। सहायता के लिए धन्यवाद!
[mapView setMapType:MKMapTypeStandard];
[mapView setZoomEnabled:YES];
[mapView setScrollEnabled:YES];
mapView.showsUserLocation=TRUE;
MKCoordinateRegion region = { {0.0, 0.0 }, { 0.0, 0.0 } };
CLLocationCoordinate2D myCoord = {mapView.userLocation.location.coordinate.latitude,mapView.userLocation.location.coordinate.longitude};
[mapView setCenterCoordinate:myCoord animated:YES];
region.span.longitudeDelta = 0.01f;
region.span.latitudeDelta = 0.01f;
[mapView setRegion:region animated:YES];
[mapView setDelegate:self];