1

React-native-maps を使用する反応ネイティブ アプリに取り組んでいます。現在、現在のリージョンの左上隅 (緯度と経度) と右下隅 (緯度と経度) を取得することに固執しています。

<MapView.Animated
        onRegionChange={this.onRegionChange.bind(this)}
        showsUserLocation
        initialRegion={{
          latitude: coords.latitude,
          longitude: coords.longitude,
          latitudeDelta: LATITUDE_DELTA,
          longitudeDelta: LONGITUDE_DELTA,
        }}
        style={{ flex: 1 }}
      >
      <MapView.Marker
          coordinate={{ latitude: coords.latitude, longitude: coords.longitude }}
      >
      <MapView.Callout style={{ position: 'relative', width: 150}}>
        <PlaceCard />
      </MapView.Callout>
    </MapView.Marker>
</MapView.Animated>

それを取得する方法についてのアイデアはありますか?!

4

1 に答える 1