转发地理编码和缩放以适应多个位置
Posted
技术标签:
【中文标题】转发地理编码和缩放以适应多个位置【英文标题】:Forward geocoding and zoom to fit multiple locations 【发布时间】:2013-03-21 05:38:56 【问题描述】:以下是我用来加载地图视图的代码。
- (void)getLatLongCoordinates:(NSString*) addressStr firstNameTitle:(NSString*) firstNamesTitle lastNameTitle:(NSString*) lastNamesTitle
MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
[geocoder geocodeAddressString:addressStr completionHandler:^(NSArray *placemarks, NSError *error)
self.placemarksArray = placemarks;
CLPlacemark *placeInfo = [placemarks objectAtIndex:0];
mapCenter.latitude = placeInfo.location.coordinate.latitude;
mapCenter.longitude = placeInfo.location.coordinate.latitude;
[annotationPoint setCoordinate:mapCenter];
[annotationPointsArray addObject:annotationPoint];
addAnnotation = [[[MyAddressAnnotation alloc] initWithCoordinate:mapCenter title:firstNamesTitle SubTitle:lastNamesTitle ]autorelease];
addAnnotation.firstNameTitle = firstNamesTitle;
addAnnotation.lastNameTitle = lastNamesTitle;
[mapView addAnnotation:addAnnotation];
];
我需要调用[self zoomToFitMapAnnotations:mapView withArray:annotationPointsArray];
方法以使地图视图中的所有联系人以最大缩放级别适应。直到之前的实现我已经成功地使用了下面的代码。但是由于我现在使用块,所以我对何时调用此方法有点困惑。在调用此方法并将数组传递给它之前,我需要获取所有位置坐标。
-(void)zoomToFitMapAnnotations:(MKMapView*)mapViews withArray:(NSArray*)anAnnotationArray
if([mapViews.annotations count] == 0) return;
CLLocationCoordinate2D topLeftCoord;
topLeftCoord.latitude = -90;
topLeftCoord.longitude = 180;
CLLocationCoordinate2D bottomRightCoord;
bottomRightCoord.latitude = 90;
bottomRightCoord.longitude = -180;
for(MKPointAnnotation* annotation in anAnnotationArray)
topLeftCoord.longitude = fmin(topLeftCoord.longitude, annotation.coordinate.longitude);
topLeftCoord.latitude = fmax(topLeftCoord.latitude, annotation.coordinate.latitude);
bottomRightCoord.longitude = fmax(bottomRightCoord.longitude, annotation.coordinate.longitude);
bottomRightCoord.latitude = fmin(bottomRightCoord.latitude, annotation.coordinate.latitude);
MKCoordinateRegion region;
region.center.latitude = topLeftCoord.latitude - (topLeftCoord.latitude - bottomRightCoord.latitude) * 0.5;
region.center.longitude = topLeftCoord.longitude + (bottomRightCoord.longitude - topLeftCoord.longitude) * 0.5;
region.span.latitudeDelta = fabs(topLeftCoord.latitude - bottomRightCoord.latitude) * 1.1;
region.span.longitudeDelta = fabs(bottomRightCoord.longitude - topLeftCoord.longitude) * 1.1;
region = [mapViews regionThatFits:region];
[mapView setRegion:region animated:NO];
在上面这段代码中调用上述方法的正确位置在哪里,还是我需要找到其他方法来做到这一点。
编辑:我避免使用mapCenter
并在getLatLongCoordinates
方法中直接从placeInfo
访问坐标,我做对了,问题就解决了。但是我仍然很困惑,为什么第一种方法不起作用。
【问题讨论】:
调用这个 [self zoomToFitMapAnnotations:mapView withArray:annotationPointsArray];在 [mapView addAnnotation:addAnnotation]; 之后 或者简单地调用这个方法 - (void)zoomToFitMapAnnotations if ([mMapView.annotations count] == 0) return;诠释 i = 0; MKMapPoint points[[mMapView.annotations count]]; //为 (id[mapView addAnnotation:addAnnotation];
之后。问题是无论位置如何,地图视图都会缩放到中亚地区。
块执行完成后调用并检查
【参考方案1】:
我在我的情况下使用这种方法
通常我在我的 mapview 中添加注释后调用此方法..所以最好的方法是在将 annotationView 添加到 mapVIEW 后调用此方法。
【讨论】:
我有多个位置,但无法正确获取缩放范围。无论位置如何,它总是会放大到中亚部分。【参考方案2】:使用此代码zoomToFitMapAnnotations
-(void)zoomToFitMapAnnotations:(MKMapView*)mapView_
if([mapView_.annotations count] == 0)
return;
CLLocationCoordinate2D topLeftCoord;
topLeftCoord.latitude = -90;
topLeftCoord.longitude = 180;
CLLocationCoordinate2D bottomRightCoord;
bottomRightCoord.latitude = 90;
bottomRightCoord.longitude = -180;
for(CKMapAnnotationView* annotation in mapView_.annotations)
topLeftCoord.longitude = fmin(topLeftCoord.longitude, annotation.coordinate.longitude);
topLeftCoord.latitude = fmax(topLeftCoord.latitude, annotation.coordinate.latitude);
bottomRightCoord.longitude = fmax(bottomRightCoord.longitude, annotation.coordinate.longitude);
bottomRightCoord.latitude = fmin(bottomRightCoord.latitude, annotation.coordinate.latitude);
MKCoordinateRegion region;
region.center.latitude = topLeftCoord.latitude - (topLeftCoord.latitude - bottomRightCoord.latitude) * 0.5;
region.center.longitude = topLeftCoord.longitude + (bottomRightCoord.longitude - topLeftCoord.longitude) * 0.5;
region.span.latitudeDelta = fabs(topLeftCoord.latitude - bottomRightCoord.latitude) * 1.1;
region.span.longitudeDelta = fabs(bottomRightCoord.longitude - topLeftCoord.longitude) * 1.1;
region = [mapView_ regionThatFits:region];
[mapView_ setRegion:[self validRegion:region] animated:YES];
编辑:在加载注释后调用此函数
[self zoomToFitMapAnnotations:mapView];
【讨论】:
以上是关于转发地理编码和缩放以适应多个位置的主要内容,如果未能解决你的问题,请参考以下文章
在 iOS 中使用 CLGeocoder 进行转发地理编码,为某些位置的位置返回 null