From a8297afeff989f07a0d54dadfec7b34799a9c5dd Mon Sep 17 00:00:00 2001 From: 单军华 Date: Wed, 11 Jul 2018 11:40:39 +0800 Subject: [PATCH] 打包配置 --- screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKPolyline.h | 97 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 97 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKPolyline.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKPolyline.h new file mode 100644 index 0000000..1c57e55 --- /dev/null +++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKPolyline.h @@ -0,0 +1,97 @@ +/* + * BMKPolyline.h + * BMapKit + * + * Copyright 2011 Baidu Inc. All rights reserved. + * + */ + +#import "BMKMultiPoint.h" +#import "BMKOverlay.h" + +/// ������������������������������ +@interface BMKPolyline : BMKMultiPoint <BMKOverlay> + +/** + *��������������������������������������� + *@param points ������������������������������ + *@param count ������������������ + *@return ������������������������ + */ ++ (BMKPolyline *)polylineWithPoints:(BMKMapPoint *)points count:(NSUInteger)count; + +/** + *��������������������������������������� + *@param coords ��������������������������������� + *@param count ������������������ + *@return ������������������������ + */ ++ (BMKPolyline *)polylineWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count; + +/** + *��������������������������� + *@param points ������������������������������ + *@param count ������������������ + *@return ������������������ + */ +- (BOOL)setPolylineWithPoints:(BMKMapPoint *)points count:(NSInteger) count; + +/** + *��������������������������� + *@param coords ��������������������������������� + *@param count ������������������ + *@return ������������������ + */ +- (BOOL)setPolylineWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSInteger) count; + + +#pragma mark - ������������������������������������������������������������������������ + +///������������������������������������������ +@property (nonatomic, strong) NSArray *textureIndex; + +/** + *������������������/������������������������������������������������������������ + * + *���������������������������������BMKPolylineView������������ - (BOOL)loadStrokeTextureImages:(NSArray *)textureImages; ������������������������������������������������������������ + *���������������������������������BMKPolylineView������������colors������ + * + *@param points ������������������������������ + *@param count ������������������ + *@param textureIndex ������������������������������������������������������NSNumber,���������������������������0������ + *@return ������������������������ + */ ++ (BMKPolyline *)polylineWithPoints:(BMKMapPoint *)points count:(NSUInteger)count textureIndex:(NSArray*) textureIndex; + +/** + *��������������������������������������� + * + *���������������������������������BMKPolylineView������������ - (BOOL)loadStrokeTextureImages:(NSArray *)textureImages; ������������������������������������������������������������ + *���������������������������������BMKPolylineView������������colors������ + * + *@param coords ��������������������������������� + *@param count ������������������ + *@param textureIndex ������������������������������������������������������NSNumber,���������������������������0������ + *@return ������������������������ + */ ++ (BMKPolyline *)polylineWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count textureIndex:(NSArray*) textureIndex; + +/** + *��������������������������� ��� ������������ + *@param points ������������������������������ + *@param count ������������������ + *@param textureIndex ������������������������������������������������������NSNumber,���������������������������0������ + *@return ������������������ + */ +- (BOOL)setPolylineWithPoints:(BMKMapPoint *)points count:(NSInteger) count textureIndex:(NSArray*) textureIndex; + +/** + *��������������������������� + *@param coords ��������������������������������� + *@param count ������������������ + *@param textureIndex ������������������������������������������������������NSNumber,���������������������������0������ + *@return ������������������ + */ +- (BOOL)setPolylineWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSInteger) count textureIndex:(NSArray*) textureIndex; + +@end -- Gitblit v1.8.0