如何在我的應用中自動縮放我的userLocation上的地圖? 我有以下代碼zomm在地圖上,但我必須放大userLocation和下面的代碼放大總是非洲?放大用戶位置
MKCoordinateRegion zoomIn = mapView.region;
zoomIn.span.latitudeDelta *= 0.2;
zoomIn.span.longitudeDelta *= 0.2;
zoomIn.center.latitude = mapView.userLocation.location.coordinate.latitude;
zoomIn.center.longitude = mapView.userLocation.location.coordinate.longitude;
[mapView setRegion:zoomIn animated:YES];
爲了新手的利益:有時當它工作正常時,它可能仍然從大西洋離開非洲海岸,因爲你在模擬器中運行它,位置(在調試下)設置爲無 – aremvee 2014-09-25 12:23:51