0

このライブラリに問題があります。(onPress)で地図から現在の中心座標を取得しようとしていますが、何も表示されず、

agree = async () => {
  const center = await this._map.getCenter();
  console.warn(center);
}

マップコード。

<MapboxGL.MapView
  ref={(c) => this._map = c}
  style={{ flex: 1 }}
  zoomLevel={15}
  centerCoordinate={[-122.084, 37.422]}>
</MapboxGL.MapView>

私はonPressを次のように使用しています:

<TouchableOpacity
  style={styles.button}
  onPress={this.agree.bind(this)}
>
  <Text style={styles.buttonText}>NYC</Text>
</TouchableOpacity>

ヘルプはありますか?

4

1 に答える 1