立得地图iOS SDK 地图&搜索服务参考手册 V1.7.0
LMKPinAnnotationView.h
浏览该文件的文档.
1 //
2 // LMKPinAnnotationView.h
3 // LeadorMapSDK
4 //
5 // Copyright © 2016年 IShowChina. All rights reserved.
6 //
7 
8 #import "LMKAnnotationView.h"
9 #import <UIKit/UIKit.h>
10 
11 // 颜色后续要改
12 typedef NS_ENUM(NSUInteger, LMKPinAnnotationColor){
13  LMKPinAnnotationColorDefault,
14  LMKPinAnnotationColorAzure,
15  LMKPinAnnotationColorBlue,
16  LMKPinAnnotationColorGreen,
17  LMKPinAnnotationColorMagenta,
18  LMKPinAnnotationColorRed,
19  LMKPinAnnotationColorRose,
20  LMKPinAnnotationColorViolet,
21  LMKPinAnnotationColorYellow,
22 };
23 
28 
32 @property (nonatomic) LMKPinAnnotationColor pinColor;
33 
37 @property (nonatomic) BOOL animatesDrop;
38 
39 @end
BOOL animatesDrop
动画效果
Definition: LMKPinAnnotationView.h:37
标注view
Definition: LMKAnnotationView.h:27
LMKPinAnnotationColor pinColor
大头针的颜色
Definition: LMKPinAnnotationView.h:32
提供类似大头针效果的annotation view
Definition: LMKPinAnnotationView.h:27
typedef NS_ENUM(NSUInteger, LMKPinAnnotationColor)
Definition: LMKPinAnnotationView.h:12