BaiduMap_IOSSDK_v5.4.0_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;
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 
41 @property(assign,nonatomic)BMKLineJoinType lineJoinType;
42 
44 @property(assign,nonatomic)BMKLineCapType lineCapType;
45 
47 @property(assign,nonatomic)BMKLineDashType lineDashType;
48 @end
该类是地图覆盖物View的基类,提供绘制overlay的接口但本身并无实现,所有地图覆盖物View需要继承自此类
Definition: BMKOverlayView.h:13
该类定义了一个用opengl绘制的OverlayView的基类,如果需要用gdi进行绘制请继承于BMKOverlayPathView类
Definition: BMKOverlayGLBasicView.h:13