MBMapkit
|
00001 // 00002 // MBMultiPoint.h 00003 // MBMapKit 00004 // 00005 // Copyright 2011 Mapbar Inc. All rights reserved. 00006 // 00007 00008 #import <Foundation/Foundation.h> 00009 #import "MBShape.h" 00010 #import "MBGeometry.h" 00011 00018 @interface MBMultiPoint : MBShape { 00019 @package 00020 MBMapPoint *_points; 00021 NSUInteger _pointCount; 00022 00023 MBMapRect _boundingRect; 00024 } 00025 00032 @property (nonatomic, readonly) MBMapPoint * points; 00033 00038 @property (nonatomic, readonly) NSUInteger pointCount; 00039 00049 - (void)getCoordinates:(CLLocationCoordinate2D *)coords range:(NSRange)range; 00050 00051 @end 00052