我必须将 MKCicle 绘制到 MKMapView 中。然后当用户通过滑块更改半径时,我必须重新绘制它。我删除它并重新创建它,将它重新添加到 map 中。
但是,我看到 MKCircle 在 map 上平移,并保持相同的大小,而不是按照我的期望去做。
这是我的代码:
- (MKOverlayView *)mapView:(MKMapView *)map viewForOverlay:(id)overlay
{
MKOverlayView* overlayView = nil;
if(overlay == self.circle)
{
//if we have not yet created an overlay view for this overlay, create it now.
if(nil == self.circleView)
{
self.circleView = [[[MKCircleView alloc] initWithCircle:self.circle] autorelease];
self.circleView.fillColor = [UIColor blueColor];
self.circleView.strokeColor = [UIColor blueColor];
self.circleView.alpha = 50;
self.circleView.lineWidth = 2;
}
overlayView = self.circleView;
}
return overlayView;
}
-(void)drawPolygonWithLocation
{
[self.mapView removeOverlay: self.circle];
MKCoordinateRegion region;
region.center.latitude = self.geofenceLocation.latitude;
region.center.longitude = self.geofenceLocation.longitude;
region.span.latitudeDelta = 0.005;
region.span.longitudeDelta = 0.005;
MKCoordinateRegion adjustedRegion = [self.mapView regionThatFits: region];
[self.mapView setRegion:adjustedRegion animated:TRUE];
self.radius = (double)(slRadius.value);
NSLog(@"Raggio: %f", self.radius);
NSLog(@"Lat: %f, Lon: %f", region.center.latitude, region.center.longitude);
self.circle = [MKCircle circleWithCenterCoordinate:self.geofenceLocation.coordinate radius: self.radius];
NSLog(@"CIRCLE: radius %f Lat: %f, Lon: %f", self.circle.radius, self.circle.coordinate.latitude, self.circle.coordinate.longitude);
[self.mapView addOverlay:self.circle];
}
-(IBAction)updateRadius:(id)sender
{
[self drawPolygonWithLocation];
}
NSLog 正在写入控制台正确的值,中心不会改变,半径会根据用户输入而改变。
但是,再一次,MKCircle 翻译为向西走。
提前致谢,
塞缪尔·拉比尼
最佳答案
固定的。
我只是添加
self.circleView = nil;
之前
[self.mapView addOverlay:self.circle];
这样它工作正常。
塞缪尔
关于ios - MKCircle 没有更新半径,但它正在翻译,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8765805/