BaiduMap_IOSSDK_v6.2.0_Docs  6.2.0
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;
20 
23 @property (strong, nonatomic) UIColor *strokeColor;
24 
26 @property (nonatomic, assign) CGFloat lineWidth;
27 
29 @property CGPathRef path;
30 
32 @property (nonatomic) BOOL lineDash __deprecated_msg("已废弃since 5.0.0,已废弃,请使用lineDashType绘制虚线");
33 
35 @property (assign, nonatomic) BOOL tileTexture __deprecated_msg("已废弃since 5.0.0");
36 
38 @property (assign, nonatomic) BOOL keepScale;
39 
40 
42 @property (assign, nonatomic) BMKLineDashType lineDashType;
43 @end
BMKLineDashType
虚线绘制样式
Definition: BMKLineDrawType.h:32
该类定义了一个用opengl绘制的OverlayView的基类,如果需要用gdi进行绘制请继承于BMKOverlayPathView类
Definition: BMKOverlayGLBasicView.h:13
BOOL tileTexture __deprecated_msg("已废弃since 5.0.0")
是否纹理图片平铺绘制,默认NO
BOOL lineDash __deprecated_msg("已废弃since 5.0.0,已废弃,请使用lineDashType绘制虚线")
是否为虚线样式,默认NO
该类是地图覆盖物View的基类,提供绘制overlay的接口但本身并无实现,所有地图覆盖物View需要继承自此类
Definition: BMKOverlayView.h:14