我可以从中获得NE和SW lat。
bounds_ = [[GMSCoordinateBounds alloc] initWithRegion:mapView_.projection.visibleRegion];
CLLocationCoordinate2D southWest = CLLocationCoordinate2DMake(bounds_.southWest.latitude, bounds_.southWest.longitude);
CLLocationCoordinate2D northEast = CLLocationCoordinate2DMake(bounds_.northEast.latitude,bounds_.northEast.longitude);
我怎样才能将东北和西南拉近25%填充,以便我可以将填充坐标传递给API并获得比屏幕视图区域略大的图像。
答案 0 :(得分:0)
您可能想要更改Mapview相机的缩放级别。
示例Objective-C代码:
[mapView_ animateToZoom:12];
有关详细信息,请参阅Google地图iOS页面的the Zoom section。