[react-native] map view - add onTouch** props

This commit is contained in:
Jiajie Zhu 2015-03-31 17:09:00 -07:00
parent b2fc956858
commit 571ade3ffc
1 changed files with 3 additions and 0 deletions

View File

@ -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}
/>
);
},