//
/***************************************************************
 * Copyright © 2017 HERE Global B.V. All rights reserved. *
 **************************************************************/
//

#import "CLLocation+Dictionary.h"

@implementation CLLocation (hereSdk_Dictionary)

- (NSDictionary *)dictionary
{
  return @{
           @"lat": [NSNumber numberWithDouble:self.coordinate.latitude],
           @"lng": [NSNumber numberWithDouble:self.coordinate.longitude],
           };
}

@end
