概览
此类表示基于部分类型输入的字符串而对完整查询的地点建议。
属性 | |
NSAttributedString * | attributedFullText |
建议的完整说明,以 NSAttributedString 表示。 | |
NSAttributedString * | attributedPrimaryText |
建议的主要文本,以 NSAttributedString 的形式表示,通常为地点的名称。 | |
NSAttributedString * | attributedSecondaryText |
以 NSAttributedString 表示的建议的辅助文本,通常是地点的位置。 | |
NSString * | placeID |
表示建议的地点 ID 的属性,适合在地点详情请求中使用。 | |
NSArray<NSString * >* | 类型 |
自动补全结果类型。 | |
NSNumber * | distanceMeters |
原点与此建议之间的直线距离(如果在请求的 GMSAutocompleteFilter 中指定了有效出发地)。 |
属性说明
- (NSAttributedString*) attributedFullText [read, copy] |
建议的完整说明,以 NSAttributedString 表示。
例如,“悉尼歌剧院 Sydney, New South Wales, Australia”。
每个与用户输入匹配的文本范围都有一个 kGMSAutocompleteMatchAttribute
。例如,您可以使用 enumeAttribute 将每个匹配项加粗:
UIFont *regularFont = [UIFont systemFontOfSize:[UIFont labelFontSize]]; UIFont *boldFont = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]];
NSMutableAttributedString *bolded = [suggestion.attributedFullText mutableCopy]; [bolded enumerateAttribute:kGMSAutocompleteMatchAttribute inRange:NSMakeRange(0, bolded.length) options:0 usingBlock:^(id value, NSRange range, BOOL *stop) { UIFont *font = (value == nil) ? regularFont : boldFont; [bolded addAttribute:NSFontAttributeName value:font range:range]; }];
label.attributedText = bolded;
- (NSAttributedString*) attributedPrimaryText [read, copy] |
建议的主要文本,以 NSAttributedString 的形式表示,通常为地点的名称。
例如:“Sydney Opera House”。
与用户输入匹配的文本范围具有 kGMSAutocompleteMatchAttribute
,例如 attributedFullText
。
- (NSAttributedString*) attributedSecondaryText [read, copy] |
以 NSAttributedString 表示的建议的辅助文本,通常是地点的位置。
例如:“Sydney, New South Wales, Australia”。
与用户输入匹配的文本范围具有 kGMSAutocompleteMatchAttribute
,例如 attributedFullText
。
可为 nil
。
- (NSString*) placeID [read, copy] |
表示建议的地点 ID 的属性,适合在地点详情请求中使用。
- (NSArray<NSString *>*) 类型 [read, copy] |
自动补全结果类型。
类型是指 NSString,有效值是指 <https://developers.google.com/places/ios-sdk/supported_types> 上记录的任何类型。
- (NSNumber*) distanceMeters [read, assign] |
原点与此建议之间的直线距离(如果在请求的 GMSAutocompleteFilter
中指定了有效出发地)。