我有MKMapView
很多MKAnnotations
。单击按钮时,将添加另一组注释。
现在单击按钮,我有一个注释数组。我将注释数组添加到Mkmapview
.
我希望地图视图移动到添加新注释的区域,而无需缩小或放大。
请帮我解决问题。
我有MKMapView
很多MKAnnotations
。单击按钮时,将添加另一组注释。
现在单击按钮,我有一个注释数组。我将注释数组添加到Mkmapview
.
我希望地图视图移动到添加新注释的区域,而无需缩小或放大。
请帮我解决问题。
我认为将中心设置为注释数组中的一个坐标将达到您的目的
[_mapView setCenterCoordinate:annotationCoOrd zoomLevel:_zoomLvl animated:YES];
其中 ,annotationCoOrd 是数组中的坐标之一, _zoomLvl 是您当前的缩放级别。
如果您在此处发布代码会更有帮助。
缩放级别
- (double)getZoomLevel{
MKCoordinateRegion reg=self.region; // the current visible region
MKCoordinateSpan span=reg.span; // the deltas
CLLocationCoordinate2D centerCoordinate=reg.center; // the center in degrees
// Get the left and right most lonitudes
CLLocationDegrees leftLongitude=(centerCoordinate.longitude-(span.longitudeDelta/2));
CLLocationDegrees rightLongitude=(centerCoordinate.longitude+(span.longitudeDelta/2));
CGSize mapSizeInPixels = self.bounds.size; // the size of the display window
// Get the left and right side of the screen in fully zoomed-in pixels
double leftPixel=[self longitudeToPixelSpaceX:leftLongitude];
double rightPixel=[self longitudeToPixelSpaceX:rightLongitude];
// The span of the screen width in fully zoomed-in pixels
double pixelDelta=abs(rightPixel-leftPixel);
// The ratio of the pixels to what we're actually showing
double zoomScale= mapSizeInPixels.width /pixelDelta;
// Inverse exponent
double zoomExponent=log2(zoomScale);
// Adjust our scale
double zoomLevel=zoomExponent+20;
return zoomLevel;
}
- (double)longitudeToPixelSpaceX:(double)longitude
{
return round(MERCATOR_OFFSET + MERCATOR_RADIUS * longitude * M_PI / 180.0);
}
- (double)latitudeToPixelSpaceY:(double)latitude
{
return round(MERCATOR_OFFSET - MERCATOR_RADIUS * logf((1 + sinf(latitude * M_PI / 180.0)) / (1 - sinf(latitude * M_PI / 180.0))) / 2.0);
}
要获得地图的缩放级别,请在您的 MKMapView 实现(覆盖 MKMapview 实现)中添加上述代码。
使用 belo 方法进行移动而不缩放
[mapview setCenterCoordinate:cordinate animated:YES];