0

我想为 React-native-maps {Google} 标记设置动画。

我尝试使用动画模块,但标记不允许复杂的样式。

是否有任何功能可以修改标记的坐标并为其赋予动画?,例如:

marker.setAnimation(google.maps.Animation.BOUNCE);

我尝试过:

<MapView.Marker.Animated>

但我无法创建效果。是否有将坐标编辑为动画下降的功能?

4

1 回答 1

5

React 原生地图标记默认是“非动画的”,它不能接受 gif 图像、精灵、动画 api 等。. 但是,我能够通过图像转换以艰难的方式对其进行动画处理。这是我的例子:

constructor(props, context) {
  super(props, context);
  this.state = {
    startTransition: 1,
    endTransition: 4,
  };
}

componentDidMount() {
  this.animate();
}

animate() {
  const {startTransition, endTransition} = this.state;
  if(startTransition < endTransition){
    let currentTransition = startTransition + 1;
    this.setState({startTransition: currentTransition});
  } else {
    this.setState({startTransition: 1});
  }
  let x = setTimeout(()=>{
    this.animate()
  }, 500);
}

renderImg(imgTrans) {
  if(imgTrans === 1) {
    return require('./walk1.png');
  }
  if(imgTrans === 2) {
    return require('./walk2.png');
  }
  if(imgTrans === 3) {
    return require('./walk3.png');
  }
  if(imgTrans === 4) {
    return require('./walk4.png');
  }
}

render() {
  const {startTransition} = this.state;
  return (
    <MapView.Marker
      coordinate={tapCoords}
      image={this.renderImg(startTransition)}
    >
  )
}

这就是我现在制作动画的方式。

于 2017-08-23T02:16:11.560 回答