mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
f9dfb90a35
Summary: public This diff adds the ability to specify a custom React component (aka view) to be displayed as a MapView pin. This makes it possible to use remote images (using an <Image/> component), or text (using a <Text/> component), or anything else. One consequence of this is that MapView can no longer support arbitrary subviews. To place views in front the map, add them to a separate container view. Reviewed By: tadeuzagallo Differential Revision: D2764790 fb-gh-sync-id: e16b44e866c2d76c76b0cb35ef9eefbfc68d6719
30 lines
796 B
Objective-C
30 lines
796 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <MapKit/MapKit.h>
|
|
|
|
#import "RCTConvert.h"
|
|
|
|
@class RCTMapAnnotation;
|
|
@class RCTMapOverlay;
|
|
|
|
@interface RCTConvert (MapKit)
|
|
|
|
+ (MKCoordinateSpan)MKCoordinateSpan:(id)json;
|
|
+ (MKCoordinateRegion)MKCoordinateRegion:(id)json;
|
|
+ (MKMapType)MKMapType:(id)json;
|
|
|
|
+ (RCTMapAnnotation *)RCTMapAnnotation:(id)json;
|
|
+ (RCTMapOverlay *)RCTMapOverlay:(id)json;
|
|
|
|
+ (NSArray<RCTMapAnnotation *> *)RCTMapAnnotationArray:(id)json;
|
|
+ (NSArray<RCTMapOverlay *> *)RCTMapOverlayArray:(id)json;
|
|
|
|
@end
|