mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-31 04:51:15 +00:00
26 lines
664 B
Objective-C
26 lines
664 B
Objective-C
//
|
|
// CameraStop.h
|
|
// RCTMGL
|
|
//
|
|
// Created by Nick Italiano on 9/5/17.
|
|
// Copyright © 2017 Mapbox Inc. All rights reserved.
|
|
//
|
|
|
|
@import Mapbox;
|
|
|
|
@interface CameraStop : NSObject
|
|
|
|
@property (nonatomic, assign) NSNumber* pitch;
|
|
@property (nonatomic, assign) NSNumber* heading;
|
|
@property (nonatomic, assign) NSNumber* zoom;
|
|
@property (nonatomic, assign) NSNumber *boundsPadding;
|
|
@property (nonatomic, assign) NSNumber *mode;
|
|
@property (nonatomic, assign) NSTimeInterval duration;
|
|
|
|
@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
|
|
@property (nonatomic, assign) MGLCoordinateBounds bounds;
|
|
|
|
+ (CameraStop*)fromDictionary:(NSDictionary*)args;
|
|
|
|
@end
|