IndoorMapSDK
室内地图SDK参考文档
 全部  函数 变量 属性
OIMPinAnnotationView.h
1 //
2 // OIMPinAnnotationView.h
3 // OIMMapKitDemo
4 //
5 // Created by songjian on 13-1-7.
6 // Copyright (c) 2013年 songjian. All rights reserved.
7 //
8 
9 #import "OIMMapKit.h"
10 
11 typedef NS_ENUM(NSUInteger, OIMPinAnnotationColor){
12  OIMPinAnnotationColorRed = 0,
13  OIMPinAnnotationColorGreen,
14  OIMPinAnnotationColorPurple
15 };
16 //typedef NSUInteger OIMPinAnnotationColor;
17 
22 
26 @property (nonatomic) OIMPinAnnotationColor pinColor;
27 
29 // @brief 动画效果
30 // */
31 //@property (nonatomic) BOOL animatesDrop;
32 
33 @end
提供类似大头针效果的annotation view
Definition: OIMPinAnnotationView.h:21
标注view
Definition: OIMAnnotationView.h:25
OIMPinAnnotationColor pinColor
大头针的颜色,有OIMPinAnnotationColorRed, OIMPinAnnotationColorGreen, OIMPinAnnotationColorPurple三种 ...
Definition: OIMPinAnnotationView.h:26