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/BMKGroundOverlay.h | 65 ++++++++++++++++++++++++++++++++ 1 files changed, 65 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKGroundOverlay.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKGroundOverlay.h new file mode 100644 index 0000000..bc6e058 --- /dev/null +++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/Headers/BMKGroundOverlay.h @@ -0,0 +1,65 @@ +/* + * BMKGroundOverlay.h + * BMapKit + * + * Copyright 2011 Baidu Inc. All rights reserved. + * + */ +#import "BMKMultiPoint.h" +#import "BMKOverlay.h" +/// ������������������������������������ +@interface BMKGroundOverlay : BMKMultiPoint<BMKOverlay> +{ + @public + float zoomLevel; + CLLocationCoordinate2D _pt; + BMKCoordinateBounds _bound; + CGPoint _anchor; + UIImage* _icon; + int iconID; + BOOL isCenterPt; + int left; + int bottom; + int width; + int height; +} +/// ������������GroundOverlay���������������������������������������������������anchor������������ +@property (nonatomic,assign) CLLocationCoordinate2D pt; + +/// ������������������������������������������������������(0.0f,0.0f),������������������ +/// ������groundOverlayWithPosition������������������ +@property (nonatomic,assign) CGPoint anchor; + +/// ������������GroundOverlay��������������������������������������������������������������������������������� +@property (nonatomic,assign) BMKCoordinateBounds bound; + +/// ������������ +@property(nonatomic, strong) UIImage *icon; + +///���������������������,��������������� = ��������������� * alpha,���������������[0.0f, 1.0f]������������1.0f +@property(nonatomic) GLfloat alpha; + +/** + *���������������������������������������groundOverlay + *@param position ������������������������ + *@param zoomLevel ������������������������������������������������ + *@param anchor ��������������������� + *@param icon ��������������������� + *@return ������������groundOverlay������ + */ ++ (BMKGroundOverlay *)groundOverlayWithPosition:(CLLocationCoordinate2D)position + zoomLevel:(CGFloat)zoomLevel + anchor:(CGPoint)anchor + icon:(UIImage*)icon; + +/** + *������������������������������groundOverlay + *@param bounds ������������������������ + *@param icon ��������������������� + *@return ������������groundOverlay������ + */ ++ (BMKGroundOverlay *)groundOverlayWithBounds:(BMKCoordinateBounds)bounds + icon:(UIImage*)icon; + + +@end \ No newline at end of file -- Gitblit v1.8.0