Skip to content

Instantly share code, notes, and snippets.

@reggie3
Created July 15, 2017 05:15
Show Gist options
  • Save reggie3/6d0c53d3c24b3e727b8dde23282427f3 to your computer and use it in GitHub Desktop.
Save reggie3/6d0c53d3c24b3e727b8dde23282427f3 to your computer and use it in GitHub Desktop.
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