6

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

4

1 回答 1

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];
}
于 2013-06-19T07:20:49.700 回答