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