BaiduMap_IOSSDK_v4.4.2_Docs
BMKOverlayGLBasicView.h
1 /*
2 * BMKOverlayGLBasicView.h
3 * BMapKit
4 *
5 * Copyright 2011 Baidu Inc. All rights reserved.
6 *
7 */
8 
9 #import <UIKit/UIKit.h>
10 #import "BMKOverlayView.h"
11 
14 
15 }
16 
19 @property (strong, nonatomic) UIColor *fillColor;
22 @property (strong, nonatomic) UIColor *strokeColor;
24 @property (nonatomic) CGFloat lineWidth;
26 @property CGPathRef path;
28 @property (nonatomic) BOOL lineDash;
30 @property (assign, nonatomic) BOOL tileTexture;
32 @property (assign, nonatomic) BOOL keepScale;
33 
34 @end
该类是地图覆盖物View的基类,提供绘制overlay的接口但本身并无实现,所有地图覆盖物View需要继承自此类
Definition: BMKOverlayView.h:12
该类定义了一个用opengl绘制的OverlayView的基类,如果需要用gdi进行绘制请继承于BMKOverlayPathView类
Definition: BMKOverlayGLBasicView.h:13