我想在地图的左侧显示我当前的位置。
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;
有没有办法在除中心以外的任何特定位置更改此设置?
谢谢你。
尼泰什