YMKMapView

##@interface YMKMapView : UIView

@property (nonatomic, readonly) YMKMapWindow *mapWindow;

/// When YES, the underlying rendering surface will be non-opaque,
/// allowing views behind the map to show through transparent areas.
/// Must be set before the view is displayed. Default is NO.
@property (nonatomic) BOOL transparencySupport;

- (void)setNoninteractive:(bool)is;

- (id)initWithCoder:(NSCoder *)aDecoder;

- (id)initWithFrame:(CGRect)frame;

/// :nodoc:
- (id)initWithFrame:(CGRect)frame vulkanPreferred:(BOOL)vulkanPreferred transparencySupport:(BOOL)transparencySupport;

/// :nodoc:
- (id)initWithFrame:(CGRect)frame
        scaleFactor:(float)scaleFactor
    vulkanPreferred:(BOOL)vulkanPreferred
  lifecycleProvider:(id<YRTLifecycleProvider>)lifecycleProvider
transparencySupport:(BOOL)transparencySupport;

/// :nodoc:
- (enum YRTGraphicsAPIType)getGraphicsAPI;

/// :nodoc:
- (void)handleTouchEvent:(YRTTouchEvent *)touchEvent;

@end##

Summary

Instance methods

- (void)setNoninteractive:(bool)is;

- (id)initWithCoder:(NSCoder *)aDecoder;

- (id)initWithFrame:(CGRect)frame;

Properties

@property (nonatomic, readonly) YMKMapWindow *mapWindow

@property (nonatomic, assign, unsafe_unretained, readwrite)
    BOOL transparencySupport;

When YES, the underlying rendering surface will be non-opaque, allowing views behind the map to show through transparent areas

Instance methods

setNoninteractive:

- (void)setNoninteractive:(bool)is;


initWithCoder:

- (id)initWithCoder:(NSCoder *)aDecoder;


initWithFrame:

- (id)initWithFrame:(CGRect)frame;


Properties

mapWindow

@property (nonatomic, readonly) YMKMapWindow *mapWindow


transparencySupport

@property (nonatomic, assign, unsafe_unretained, readwrite)
    BOOL transparencySupport;

When YES, the underlying rendering surface will be non-opaque, allowing views behind the map to show through transparent areas. Must be set before the view is displayed. Default is NO.


Предыдущая
Следующая