17 lines
368 B
Objective-C
17 lines
368 B
Objective-C
//
|
|
// Created by Leland Richardson on 12/27/15.
|
|
// Copyright (c) 2015 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <CoreLocation/CoreLocation.h>
|
|
#import <MapKit/MapKit.h>
|
|
#import <React/RCTConvert.h>
|
|
|
|
@interface RCTConvert (AirMap)
|
|
|
|
+ (MKCoordinateSpan)MKCoordinateSpan:(id)json;
|
|
+ (MKCoordinateRegion)MKCoordinateRegion:(id)json;
|
|
+ (MKMapType)MKMapType:(id)json;
|
|
|
|
@end
|