IndoorMapSDK
室内地图SDK参考文档
 全部  函数 变量 属性
OIMPolygon.h
1 //
2 // OIMPolygon.h
3 // OIMMapKit
4 //
5 //
6 // Copyright (c) 2011年 Autonavi Inc. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "OIMMultiPoint.h"
11 #import "OIMOverlay.h"
12 
16 @interface OIMPolygon : OIMMultiPoint
17 
24 + (instancetype)polygonWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
25 
32 + (instancetype)polygonWithPoints:(OIMPoint *)points count:(NSUInteger)count;
33 
34 @end
此类用于定义一个由多个点组成的闭合多边形, 点与点之间按顺序尾部相连, 第一个点与最后一个点相连, 通常OIMPolygon是OIMPolygonView的model ...
Definition: OIMPolygon.h:16
三维点坐标
Definition: OIMType.h:230