Files
OrderScheduling/Pods/AMapNavi-NO-IDFA/AMapNaviKit.framework/Headers/MAMapCustomStyleOptions.h
DDIsFriend f0e8a1709d initial
2023-08-18 17:28:57 +08:00

30 lines
740 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// MAMapCustomStyleOptions.h
// MAMapKit
//
// Created by ldj on 2018/11/27.
// Copyright © 2018 Amap. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface MAMapCustomStyleOptions : NSObject
///自定义样式二进制
@property (nonatomic, strong) NSData *styleData;
///海外自定义样式文件路径
@property (nonatomic, strong) NSString *styleDataOverseaPath;
///设置地图自定义样式对应的styleID从官网获取
@property (nonatomic, strong) NSString *styleId;
///设置自定义纹理文件二进制
@property (nonatomic, strong) NSData *styleTextureData;
///样式额外的配置,比如路况,背景颜色等 since 6.7.0
@property (nonatomic, strong) NSData *styleExtraData;
@end