BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
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;
12NS_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
26NS_ASSUME_NONNULL_END
Definition BMKBackgroundRoadNetView.h:15
UIColor * roadNetColor
设置路网背景颜色
Definition BMKBackgroundRoadNetView.h:20
BMKMapView * mapview
关联源地图,用于同步数据
Definition BMKBackgroundRoadNetView.h:16
此类表示地图状态信息
Definition BMKMapStatus.h:16
地图View类,使用此View可以显示地图窗口,并且对地图进行相关的操作
Definition BMKMapView.h:108