MKMapView+DSEMExtension.h 457 Bytes
//
//  MKMapView+DSEMExtension.h
//  DSCnliveShopSDK
//
//  Created by zhaolin on 2019/2/18.
//

#import <MapKit/MapKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface MKMapView (DSEMExtension)

/**
 设置中心

 @param centerCoordinate 中心
 @param zoomLevel 缩放级别
 @param animated 是否动画
 */
-(void)setCenterCoordinate:(CLLocationCoordinate2D)centerCoordinate zoomLevel:(NSUInteger)zoomLevel animated:(BOOL)animated;

@end

NS_ASSUME_NONNULL_END