MBMapkit
|
公有成员 | |
(void) | - suggestKeyword:inCity:count: |
根据输入给出建议关键词 | |
(void) | - routeSuggetKeyword:inCity:pageNumber: |
根据输入给出建议路线关键词 | |
(void) | - PoisWithKeyword:inCity:pageNumber: |
搜索关键词关联的POI点 | |
(void) | - PoisAroundCenter:withKeyword:ofType:pageNumber: |
搜索关键词关联的POI点 | |
(void) | - busStationsWithKeyword:inCity:pageNumber: |
搜索关键词关联的公交站点 | |
(void) | - busStationDetailWithSearchString: |
搜索公交站点的详细信息 | |
(void) | - busLinesWithKeyword:inCity:pageNumber: |
搜索关键词关联的公交路线 | |
(void) | - busLineDetailWithSearchString: |
公交路线的详细信息 | |
(void) | - transitDirectionsFromOrigin:toDestination:option: |
计算两个位置之间公交路线。 | |
(void) | - transitRoute:withWalkSteps: |
计算两个位置之间公交路线。 | |
(void) | - walkDirectionsFromOrigin:toDestination:option: |
计算两个位置之间步行路线。 | |
(void) | - driveDirectionsFromOrigin:toDestination:option: |
计算两个位置之间步行路线。 | |
保护属性 | |
MBNetService * | _netService |
id< MBSearchDelegate > | _delegate |
NSTimeInterval | _timeoutInterval |
NSString * | _city |
CLLocationCoordinate2D | _center |
NSUInteger | _pageCount |
NSUInteger | _pageNumber |
属性 | |
id< MBSearchDelegate > | delegate |
NSTimeInterval | timeoutInterval |
超时时间(秒) | |
NSString * | city |
搜索限定城市 | |
CLLocationCoordinate2D | center |
NSUInteger | pageCount |
- (void) busLineDetailWithSearchString: | (NSString *) | searchString |
公交路线的详细信息
searchString | 有MBBusStation中的searchString属性 |
- (void) busLinesWithKeyword: | (NSString *) | keyword | |
inCity: | (NSString *) | city | |
pageNumber: | (NSUInteger) | pageNumber | |
搜索关键词关联的公交路线
keyword | 关键词 |
city | 城市 |
pageNumger | 页码 |
- (void) busStationDetailWithSearchString: | (NSString *) | searchString |
搜索公交站点的详细信息
searchString | 有MBBusStation中的searchString属性 |
- (void) busStationsWithKeyword: | (NSString *) | keyword | |
inCity: | (NSString *) | city | |
pageNumber: | (NSUInteger) | pageNumber | |
搜索关键词关联的公交站点
keyword | 关键词 |
city | 城市 |
pageNumger | 页码 |
- (void) driveDirectionsFromOrigin: | (CLLocationCoordinate2D) | origin | |
toDestination: | (CLLocationCoordinate2D) | destination | |
option: | (MBDriveDirectionsOptions) | option | |
计算两个位置之间步行路线。
origin | 原点位置,单位加密经纬度字符串 |
destination | 目标位置,单位加密经纬度字符串 |
option | 计算路线的参数 |
- (void) PoisAroundCenter: | (CLLocationCoordinate2D) | center | |
withKeyword: | (NSString *) | keyword | |
ofType: | (NSString *) | type | |
pageNumber: | (NSUInteger) | pageNumber | |
搜索关键词关联的POI点
keyword | 关键词 optional |
center | 中心 required |
type | poi类型 optional |
pageNumger | 页码(从1开始) required |
- (void) PoisWithKeyword: | (NSString *) | keyword | |
inCity: | (NSString *) | city | |
pageNumber: | (NSUInteger) | pageNumber | |
搜索关键词关联的POI点
keyword | 关键词 required |
city | 城市 required |
type | poi类型 optional |
pageNumger | 页码页码(从1开始) required |
- (void) routeSuggetKeyword: | (NSString *) | keyword | |
inCity: | (NSString *) | city | |
pageNumber: | (NSUInteger) | pageNumber | |
根据输入给出建议路线关键词
keyword | 关键词 required |
city | 城市 required |
pageNumger | 页码(从1开始) required |
- (void) suggestKeyword: | (NSString *) | keyword | |
inCity: | (NSString *) | city | |
count: | (NSUInteger) | count | |
根据输入给出建议关键词
keyword | 关键词 required |
city | 城市 required |
count | 返回建议关键词数量 required |
- (void) transitDirectionsFromOrigin: | (CLLocationCoordinate2D) | origin | |
toDestination: | (CLLocationCoordinate2D) | destination | |
option: | (MBTransitDirectionsOptions) | option | |
计算两个位置之间公交路线。
origin | 原点位置,单位加密经纬度字符串 |
destination | 目标位置,单位加密经纬度字符串 |
option | 计算路线的参数 |
- (void) transitRoute: | (NSString *) | searchString | |
withWalkSteps: | (BOOL) | flag | |
计算两个位置之间公交路线。
searchString | MBTransitDirectiosResult对象返回的searchString |
flag | 是否计算步行数据 |
- (void) walkDirectionsFromOrigin: | (CLLocationCoordinate2D) | origin | |
toDestination: | (CLLocationCoordinate2D) | destination | |
option: | (MBWalkDirectionsOptions) | option | |
计算两个位置之间步行路线。
origin | 原点位置,单位加密经纬度字符串 |
destination | 目标位置,单位加密经纬度字符串 |
option | 计算路线的参数 |