MBMapkit
|
00001 // 00002 // MBOverlay.h 00003 // MBMapKit 00004 // 00005 // Copyright 2011 Mapbar Inc. All rights reserved. 00006 // 00007 00008 #import "MBAnnotation.h" 00009 #import "MBGeometry.h" 00010 00022 @protocol MBOverlay <MBAnnotation> 00023 @required 00024 00031 @property (nonatomic, readonly) CLLocationCoordinate2D coordinate; 00032 00040 @property (nonatomic, readonly) MBMapRect boundingMapRect; 00041 00042 @optional 00043 00052 - (BOOL)intersectsMapRect:(MBMapRect)mapRect; 00053 00054 @end 00055