0
我想在地圖的左側顯示我的當前位置。有沒有辦法將當前位置設置爲UIMap中心以外的其他位置?
CLLocationCoordinate2D theCoordinate;
theCoordinate.latitude = 26.926;
theCoordinate.longitude = 75.8235;
MKCoordinateRegion region;
region.center = theCoordinate;
MKCoordinateSpan span;
span.latitudeDelta = 0.005;
span.longitudeDelta = 0.005;
region.span=span;
[mapView setRegion:region animated:TRUE];
上面的代碼顯示在地圖的,因爲這行的中心,我的位置:
region.center = theCoordinate;
有沒有辦法來改變這種對中心以外的任何特定位置?
謝謝。
Nitesh
你想通過這個實現什麼? – Mohith 2013-05-07 13:05:04