Manual integration of RNN and RNM
This commit is contained in:
45
mobile/ios/GoogleMaps.framework/Headers/GMSMarkerLayer.h
Executable file
45
mobile/ios/GoogleMaps.framework/Headers/GMSMarkerLayer.h
Executable file
@@ -0,0 +1,45 @@
|
||||
//
|
||||
// GMSMarkerLayer.h
|
||||
// Google Maps SDK for iOS
|
||||
//
|
||||
// Copyright 2013 Google Inc.
|
||||
//
|
||||
// Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of
|
||||
// Service: https://developers.google.com/maps/terms
|
||||
//
|
||||
|
||||
#import <CoreLocation/CoreLocation.h>
|
||||
#import <QuartzCore/QuartzCore.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN;
|
||||
|
||||
/**
|
||||
* GMSMarkerLayer is a custom subclass of CALayer, available on a per-marker basis, that allows
|
||||
* animation of several properties of its associated GMSMarker.
|
||||
*
|
||||
* Note that this CALayer is never actually rendered directly, as GMSMapView is provided entirely
|
||||
* via an OpenGL layer. As such, adjustments or animations to 'default' properties of CALayer will
|
||||
* not have any effect.
|
||||
*/
|
||||
@interface GMSMarkerLayer : CALayer
|
||||
|
||||
/** Latitude, part of |position| on GMSMarker. */
|
||||
@property(nonatomic, assign) CLLocationDegrees latitude;
|
||||
|
||||
/** Longitude, part of |position| on GMSMarker. */
|
||||
@property(nonatomic, assign) CLLocationDegrees longitude;
|
||||
|
||||
/** Rotation, as per GMSMarker. */
|
||||
@property(nonatomic, assign) CLLocationDegrees rotation;
|
||||
|
||||
/** Opacity, as per GMSMarker. */
|
||||
@property(atomic, assign) float opacity;
|
||||
|
||||
@end
|
||||
|
||||
extern NSString *const kGMSMarkerLayerLatitude;
|
||||
extern NSString *const kGMSMarkerLayerLongitude;
|
||||
extern NSString *const kGMSMarkerLayerRotation;
|
||||
extern NSString *const kGMSMarkerLayerOpacity;
|
||||
|
||||
NS_ASSUME_NONNULL_END;
|
||||
Reference in New Issue
Block a user