MBMapkit
|
00001 // 00002 // MBUserLocation.h 00003 // MBMapKit 00004 // 00005 // Copyright 2011 Mapbar Inc. All rights reserved. 00006 // 00007 00008 #import <Foundation/Foundation.h> 00009 #import "MBAnnotation.h" 00010 00011 @class CLLocation; 00012 @class MBUserLocationInternal; 00013 00020 @interface MBUserLocation : NSObject<MBAnnotation> 00021 { 00022 @private 00023 MBUserLocationInternal *_internal; 00024 } 00025 00030 @property (readonly, nonatomic, getter=isUpdating) BOOL updating; 00031 00038 @property (readonly, nonatomic) CLLocation *location; 00039 00041 @property (retain, nonatomic) NSString *title; 00042 00047 @property (retain, nonatomic) NSString *subtitle; 00048 00049 @end