定位GMSMapView以一次显示多个注释

时间:2013-03-26 19:03:56

标签: ios google-maps

我的问题与this, except MKMapView.非常相似 如何使用Google地图执行相同的过程(调整地图大小以适应屏幕上的所有注释/标记)? 据我所知,我必须将MKCoordinateRegion转换为GMSProjection,我的方式是对的吗?

1 个答案:

答案 0 :(得分:13)

这很简单,只是:

@property (nonatomic, strong) GMSMapView *mapView;

- (void)didTapFitBoundsWithMarkers:(NSArray *)markers
{
GMSCoordinateBounds *bounds = [[GMSCoordinateBounds alloc] init];;

for (GMSMarker *marker in markers) {
    bounds = [bounds includingCoordinate:marker.position];
}

GMSCameraUpdate *update = [GMSCameraUpdate fitBounds:bounds];
[self.mapView moveCamera:update];
[self.mapView animateToViewingAngle:50];
}