// // MKMapView+ZoomLevel.h // CommonLibrary // // Created by Alexi on 14-11-17. // Copyright (c) 2014年 Alexi Chen. All rights reserved. // #import #define kMKMapViewMaxZoomLevel 19 #define kMKMapViewMinZoomLevel 3 @interface MKMapView (ZoomLevel) //@property (nonatomic, assign) NSUInteger zoomLevel; - (void)setCenterCoordinate:(CLLocationCoordinate2D)centerCoordinate zoomLevel:(NSUInteger)zoomLevel animated:(BOOL)animated; - (void)setZoomLevel:(NSUInteger)zoomLevel animated:(BOOL)animated; - (void)setZoomLevel:(NSUInteger)zoomLevel; @end