我通過使用showUserLocation
啓用了MKMapView
中的current location
。我還想將mapview
居中放置到用戶當前的位置以及位置的放大地圖。請幫助我,因爲我沒有從其他類似的問題上獲得任何幫助。如何在MKMapView中居中當前位置?
我的代碼如下:
- (void)viewDidLoad {
[super viewDidLoad];
[mapView setMapType:MKMapTypeStandard];
[mapView setZoomEnabled:YES];
[mapView setScrollEnabled:YES];
[mapView setCenterCoordinate:mapView.userLocation.location.coordinate animated:YES];
[mapView setDelegate:self];
}
我也doint同樣的事情,但它亙古不變的工作....如果可能的任何其他建議....在此先感謝... – vipul
也許你可以發佈你的代碼在你的問題,所以這將很容易猜到什麼是錯=) – Denis
我已經更新我的代碼有問題,這不會集中mapView currentLocation.Please檢查並幫助我....在此先感謝。 – vipul