Files
deighton-ar/mobile/ios/GoogleMaps.framework/Headers/GMSMarkerLayer.h
2018-03-27 13:37:37 -07:00

46 lines
1.3 KiB
Objective-C
Executable File

//
// 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;