BaiduMap_IOSSDK_v6.5.5doc_Docs  6.5.5
BMKDistrictSearchResult.h
浏览该文件的文档.
1 //
2 // BMKDistrictSearchResult.h
3 // BaiduMapAPI_Search
4 //
5 // Created by DanielBey on 2019/1/23.
6 // Copyright © 2019 Baidu. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import <CoreLocation/CoreLocation.h>
11 
13 @interface BMKDistrictResult : NSObject
15 @property (nonatomic, assign) NSInteger code;
17 @property (nonatomic, copy) NSString *name;
19 @property (nonatomic, assign) CLLocationCoordinate2D center;
21 @property (nonatomic, copy) NSArray<NSString *> *paths;
22 @end
BMKDistrictResult::code
NSInteger code
行政区域编码
Definition: BMKDistrictSearchResult.h:15
BMKDistrictResult::name
NSString * name
行政区域名称
Definition: BMKDistrictSearchResult.h:17
BMKDistrictResult::center
CLLocationCoordinate2D center
行政区域中心点
Definition: BMKDistrictSearchResult.h:19
BMKDistrictResult::paths
NSArray< NSString * > * paths
行政区边界直角地理坐标点数据(NSString数组,字符串数据格式为: "x,y;x,y")
Definition: BMKDistrictSearchResult.h:21
BMKDistrictResult
行政区域检索结果
Definition: BMKDistrictSearchResult.h:14