Advertisement
Guest User

Untitled

a guest
Jan 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. _onMapPress(e) {
  2. console.log(e.nativeEvent.coordinate);
  3. this.setState({
  4. markers: [
  5. ...this.state.markers,
  6. {
  7. coordinate: e.nativeEvent.coordinate,
  8. key: id++,
  9. color: "#123456", //randomColor(),
  10. //description: "This is a description"
  11. //image: {require('../assets/images/pin32.svg')}
  12. }
  13. ],
  14.  
  15.  
  16. }, () => {
  17. this.state.animations.push(getMarkerState(panX,panY,scrollY,key));
  18. });
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement