Blame view

Pods/AMap3DMap/MAMapKit.framework/Headers/MABaseOverlay.h 464 Bytes
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  //
  //  MABaseOverlay.h
  //  MAMapKit
  //
  //  Created by cuishaobin on 2020/6/17.
  //  Copyright © 2020 Amap. All rights reserved.
  //
  
  #import <Foundation/Foundation.h>
  #import "MAOverlay.h"
  
  NS_ASSUME_NONNULL_BEGIN
  
  @interface MABaseOverlay : NSObject<MAOverlay>
  
  ///返回区域中心坐标
  @property (nonatomic, assign) CLLocationCoordinate2D coordinate;
  
  ///区域外接矩形
  @property (nonatomic, assign) MAMapRect boundingMapRect;
  
  @end
  
  NS_ASSUME_NONNULL_END