单军华
2018-07-11 7b02207537d35bfa1714bf8beafc921f717d100a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 *  BMKGroundOverlayView.h
 *  BMapKit
 *
 *  Copyright 2013 Baidu Inc. All rights reserved.
 *
 */
 
#import <UIKit/UIKit.h>
 
#import "BMKGroundOverlay.h"
#import "BMKOverlayPathView.h"
 
/// 该类用于定义一个BMKGroundOverlayView
@interface BMKGroundOverlayView : BMKOverlayView
 
/**
 *根据指定的groundOverlay生成一个View
 *@param groundOverlay 指定的groundOverlay数据对象
 *@return 新生成的View
 */
- (id)initWithGroundOverlay:(BMKGroundOverlay *)groundOverlay;
 
/// 该View对应的ground数据对象
@property (nonatomic, readonly) BMKGroundOverlay *groundOverlay;
 
@end