MBMapkit
|
00001 // 00002 // MBPointAnnotation.h 00003 // MBMapKit 00004 // 00005 // Copyright 2011 Mapbar Inc. All rights reserved. 00006 // 00007 00008 #import <Foundation/Foundation.h> 00009 #import <CoreLocation/CLLocation.h> 00010 00011 #import "MBShape.h" 00012 00019 @interface MBPointAnnotation : MBShape{ 00020 @package 00021 CLLocationCoordinate2D _coordinate; 00022 } 00027 @property (nonatomic, assign) CLLocationCoordinate2D coordinate; 00028 00029 @end