Skip to content

Instantly share code, notes, and snippets.

@tanner-west
Created August 16, 2023 14:11
Show Gist options
  • Save tanner-west/ae6fd7a721af942ff39c83896b468bfc to your computer and use it in GitHub Desktop.
Save tanner-west/ae6fd7a721af942ff39c83896b468bfc to your computer and use it in GitHub Desktop.
#import <MapKit/MapKit.h>
#import <React/RCTViewManager.h>
@interface RNTMapManager : RCTViewManager
@end
@implementation RNTMapManager
RCT_EXPORT_MODULE(RNTMap)
- (UIView *)view
{
return [[MKMapView alloc] init];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment