From 7b02207537d35bfa1714bf8beafc921f717d100a Mon Sep 17 00:00:00 2001 From: 单军华 Date: Wed, 11 Jul 2018 10:47:42 +0800 Subject: [PATCH] 首次上传 --- screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKOverlayPathView.h | 88 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 88 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKOverlayPathView.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKOverlayPathView.h new file mode 100644 index 0000000..3a6cf07 --- /dev/null +++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKOverlayPathView.h @@ -0,0 +1,88 @@ +/* +* BMKOverlayPathView.h +* BMapKit +* +* Copyright 2011 Baidu Inc. All rights reserved. +* +*/ + +#import <UIKit/UIKit.h> +#import "BMKOverlayView.h" + +/// ������������������������������OverlayView +@interface BMKOverlayPathView : BMKOverlayView { +@package + UIColor *_fillColor; + UIColor *_strokeColor; + + CGFloat _lineWidth; + CGLineJoin _lineJoin; + CGLineCap _lineCap; + CGFloat _miterLimit; + CGFloat _lineDashPhase; + NSArray *_lineDashPattern; + + CGPathRef _path; +} + +/// ������������ +@property (strong) UIColor *fillColor; +/// ������������ +@property (strong) UIColor *strokeColor; + +/// ������������������������0 +@property CGFloat lineWidth; +/// LineJoin������������kCGLineJoinRound +@property CGLineJoin lineJoin; +/// LineCap������������kCGLineCapRound +@property CGLineCap lineCap; +/// miterLimit,������������kCGLineJoinMiter���������������������10 +@property CGFloat miterLimit; +/// lineDashPhase, ���������0 +@property CGFloat lineDashPhase; +/// lineDashPattern,������NSNumbers���������������������nil +@property (copy) NSArray *lineDashPattern; + +/** + *������������������path������������������������������������������path���������������self.path = newPath; + */ +- (void)createPath; +/// path������ +@property CGPathRef path; + +/** + *������path������������������������������������������path���������������������������createPath���������������path������ + */ +- (void)invalidatePath; + + +/** + *������������������ + *@param context CGContext������ + *@param zoomScale ���������zoomScale + */ +- (void)applyStrokePropertiesToContext:(CGContextRef)context + atZoomScale:(BMKZoomScale)zoomScale; + +/** + *������������������ + *@param context CGContext������ + *@param zoomScale ���������zoomScale + */ +- (void)applyFillPropertiesToContext:(CGContextRef)context + atZoomScale:(BMKZoomScale)zoomScale; +/** + *������path + *@param path ������������CGPath + *@param context CGContext������ + */ +- (void)strokePath:(CGPathRef)path inContext:(CGContextRef)context; + +/** + *������path + *@param path ������������CGPath + *@param context CGContext������ + */ +- (void)fillPath:(CGPathRef)path inContext:(CGContextRef)context; + +@end -- Gitblit v1.8.0