From 571ade3ffc2397e5e532a8b0ee91fa899fd8cbd3 Mon Sep 17 00:00:00 2001 From: Jiajie Zhu Date: Tue, 31 Mar 2015 17:09:00 -0700 Subject: [PATCH] [react-native] map view - add onTouch** props --- Libraries/Components/MapView/MapView.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Libraries/Components/MapView/MapView.js b/Libraries/Components/MapView/MapView.js index b778fc695..388e22ddc 100644 --- a/Libraries/Components/MapView/MapView.js +++ b/Libraries/Components/MapView/MapView.js @@ -147,6 +147,9 @@ var MapView = React.createClass({ legalLabelInsets={this.props.legalLabelInsets} onChange={this._onChange} onTouchStart={this.props.onTouchStart} + onTouchMove={this.props.onTouchMove} + onTouchEnd={this.props.onTouchEnd} + onTouchCancel={this.props.onTouchCancel} /> ); },