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

前端之家收集整理的这篇文章主要介绍了ios – 定位GMSMapView以一次显示多个注释前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的问题与 this,except MKMapView.非常相似
如何使用Google地图执行相同的过程(调整地图大小以适应屏幕上的所有注释/标记)?
据我所知,我必须将MKCoordinateRegion转换为GMSProjection,我的方法是对的吗?

解决方法

这很简单,只是:
@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];
}
原文链接:https://www.f2er.com/iOS/330333.html

猜你在找的iOS相关文章