1

您好,我想获得当前的缩放级别Google Map view,就像在检查的条件下一样。例如,

if(mapView.zoom==18.0)
{
 //code goes here..
}

如何得到?

4

2 回答 2

35

这很容易。GMSMapView 有一个相机 ( GMSCameraPosition ) 属性,它有一个缩放属性。

CGFloat zoom = mapView.camera.zoom;

请注意,缩放属性是只读的。

于 2015-05-26T12:09:34.217 回答
1

您可以使用以下代码。

#define MERCATOR_RADIUS 85445659.44705395
#define MAX_GOOGLE_LEVELS 20

@interface MKMapView (ZoomLevel)
- (double)getZoomLevel;
@end

@implementation MKMapView (ZoomLevel)

- (double)getZoomLevel
{
    CLLocationDegrees longitudeDelta = self.region.span.longitudeDelta;
    CGFloat mapWidthInPixels = self.bounds.size.width;
    double zoomScale = longitudeDelta * MERCATOR_RADIUS * M_PI / (180.0 * mapWidthInPixels);
    double zoomer = MAX_GOOGLE_LEVELS - log2( zoomScale );
    if ( zoomer < 0 ) zoomer = 0;
//  zoomer = round(zoomer);
    return zoomer;
}

@end

也可以使用 MKCoordinateSpan 检查文件获取更多信息。

typedef struct {
    CLLocationDegrees latitudeDelta;
    CLLocationDegrees longitudeDelta;
} MKCoordinateSpan;
于 2015-02-04T07:21:41.410 回答