BaiduMap_IOSSDK_v4.4.2_Docs
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
NSInteger code
行政区域编码
Definition: BMKDistrictSearchResult.h:15
NSString * name
行政区域名称
Definition: BMKDistrictSearchResult.h:17
CLLocationCoordinate2D center
行政区域中心点
Definition: BMKDistrictSearchResult.h:19
行政区域检索结果
Definition: BMKDistrictSearchResult.h:13
NSArray< NSString * > * paths
行政区边界直角地理坐标点数据(NSString数组,字符串数据格式为: "x,y;x,y")
Definition: BMKDistrictSearchResult.h:21