Files
汉秋 b61bf0d070 新增景区权限模块,集成 AMap CocoaPods 并支持模拟器
将景区选择与权限申请流程接入首页路由,集成高德 SDK 用于真机构建,并通过 Podfile post_install 钩子保证 arm64 模拟器可编译。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 10:15:26 +08:00

47 lines
1.6 KiB
Objective-C
Raw Permalink 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.

//
// MAParticleOverlay.h
// MAMapKit
//
// Created by liubo on 2018/9/19.
// Copyright © 2018年 Amap. All rights reserved.
//
#import "MAConfig.h"
#if MA_INCLUDE_OVERLAY_ParticleSystem
#import "MAShape.h"
#import "MAOverlay.h"
#import "MAParticleOverlayOptions.h"
#pragma mark - MAParticleOverlay
///该类用于定义一个粒子MAParticleOverlay, 通常MAParticleOverlay是MAParticleOverlayRenderer的model. since 6.5.0
///This class is used to define a particle MAParticleOverlay, usually MAParticleOverlay is the model of MAParticleOverlayRenderer. since 6.5.0
@interface MAParticleOverlay : MAShape <MAOverlay>
/**
* @brief 根据粒子覆盖物选项option生成MAParticleOverlay
* Generate MAParticleOverlay based on the particle overlay option
* @param option 粒子覆盖物选项option
* Particle overlay option
* @return 新生成的粒子覆盖物MAParticleOverlay
* Newly generated MAParticleOverlay
*/
+ (instancetype)particleOverlayWithOption:(MAParticleOverlayOptions *)option;
///当前粒子覆盖物的option如果需要修改option的配置需要修改后重新调用setOverlayOption:方法。
///The option of the current particle overlay, if you need to modify the configuration of the option, you need to call the setOverlayOption: method again after modification
@property (nonatomic, strong, readonly) MAParticleOverlayOptions *overlayOption;
/**
* @brief 更新粒子覆盖物选项option
* Update the particle overlay option
* @param overlayOption 要更新的粒子覆盖物选项
* The particle overlay option to be updated
*/
- (void)updateOverlayOption:(MAParticleOverlayOptions *)overlayOption;
@end
#endif