BaiduMap_IOSSDK_v6.6.7_Docs  6.6.7
BMKBackgroundRoadNetView.h
浏览该文件的文档.
1 //
2 // BMKBackgroundRoadNetView.h
3 // MapComponent
4 //
5 // Created by zhaoxiangru on 2024/2/29.
6 // Copyright © 2024 Baidu. All rights reserved.
7 //
8 
9 #import <QuartzCore/QuartzCore.h>
10 #import "BMKMapStatus.h"
11 @class BMKMapView;
12 NS_ASSUME_NONNULL_BEGIN
13 
14 @interface BMKBackgroundRoadNetView : UIView
16 @property (nonatomic, weak, nullable) BMKMapView *mapview;
18 //@property (nonatomic, strong) UIColor *roadNetBackColor;
20 @property (nonatomic, strong) UIColor *roadNetColor;
21 
23 - (void)renderWithMapStatus:(BMKMapStatus *)mapstatus enable3D:(BOOL)enable3D fitScale:(CGFloat)fitScale mapScreenExtOffset:(CGPoint)mapScreenExtOffset;
24 @end
25 
26 NS_ASSUME_NONNULL_END
BMKMapStatus
此类表示地图状态信息
Definition: BMKMapStatus.h:16
BMKMapView
地图View类,使用此View可以显示地图窗口,并且对地图进行相关的操作
Definition: BMKMapView.h:118
BMKMapStatus.h
BMKBackgroundRoadNetView::roadNetColor
UIColor * roadNetColor
设置路网背景颜色
Definition: BMKBackgroundRoadNetView.h:20
BMKBackgroundRoadNetView::mapview
BMKMapView * mapview
关联源地图,用于同步数据
Definition: BMKBackgroundRoadNetView.h:16
BMKBackgroundRoadNetView
Definition: BMKBackgroundRoadNetView.h:15