MBMapkit
|
00001 // 00002 // MBDirctions.h 00003 // MBMapkit_library 00004 // 00005 // Created by 张嘉伟 on 11-10-26. 00006 // Copyright 2011 Mapbar Inc. All rights reserved. 00007 // 00008 00009 #import <Foundation/Foundation.h> 00010 00017 @interface MBDirections : NSObject 00018 { 00019 @private 00020 NSDictionary *_internal; 00021 NSUInteger _numRoutes; 00022 NSArray *_routes; 00023 } 00024 00030 @property (nonatomic, readonly) NSUInteger numRoutes; 00031 00037 @property (nonatomic ,readonly) NSArray *routes; 00038 00045 - (id)initWithDictionary:(NSDictionary *)dictionary; 00046 00047 @end