Created
July 15, 2017 05:15
-
-
Save reggie3/6d0c53d3c24b3e727b8dde23282427f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
render() { | |
return ( | |
<Expo.MapView.Marker | |
key={this.props.key} | |
coordinate={{ | |
latitude: this.props.location.loc[0], | |
longitude: this.props.location.loc[1], | |
}}> | |
<FontAwesome | |
name='map-marker' | |
color={this.props.location.pinColor} | |
size={this.state.size} | |
/> | |
</Expo.MapView.Marker> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment