百度地图SDK for iOS v3.4.4 类参考
BMKSuggestionSearchOption.h
1 /*
2  * BMKSuggestionSearchOption.h
3  * BMapKit
4  *
5  * Copyright 2014 Baidu Inc. All rights reserved.
6  *
7  */
8 
9 #import <Foundation/Foundation.h>
11 @interface BMKSuggestionSearchOption : NSObject
12 {
13  NSString *_keyword;
14  NSString *_cityname;
15 
16 }
18 @property (nonatomic, strong) NSString *keyword;
20 @property (nonatomic, strong) NSString *cityname;
22 @property (nonatomic, assign) BOOL cityLimit;
23 
24 @end
25 
26 
sug检索信息类
Definition: BMKSuggestionSearchOption.h:11