Javascript 在MapView.Circle上调用getBounds()

Javascript 在MapView.Circle上调用getBounds(),javascript,reactjs,react-native,google-maps,expo,Javascript,Reactjs,React Native,Google Maps,Expo,我想在Map View.Circle组件上从Geolib调用getBounds(points)函数。我不太确定,如何获取圆区域内的坐标列表。这样我就可以将它作为参数传递给getBounds函数。 我看到一些帖子,其中google maps API中的getBounds()被调用到react google maps等等。但在这种情况下不确定。 下面是我的地图显示和圆圈代码。请分享你的知识和建议 <MapView style={styles.mapContainer} reg

我想在Map View.Circle组件上从Geolib调用getBounds(points)函数。我不太确定,如何获取圆区域内的坐标列表。这样我就可以将它作为参数传递给getBounds函数。 我看到一些帖子,其中google maps API中的getBounds()被调用到react google maps等等。但在这种情况下不确定。 下面是我的地图显示和圆圈代码。请分享你的知识和建议

<MapView style={styles.mapContainer} 
        region = {{latitude: region.latitude,
              longitude: region.longitude,
              latitudeDelta: region.latitudeDelta,
              longitudeDelta: region.longitudeDelta}}
        >
        <MapView.Marker
            coordinate={{
            latitude: region.latitude,
            longitude:region.longitude}}
            title={"Me"}
         />
         <MapView.Circle
                key = { (region.latitude + region.longitude).toString() }
                center = {pickedLocation}
                radius = { 100 }
                strokeWidth = { 2 }
                strokeColor = { '#1a66ff' }
                fillColor = { 'rgba(230,238,255,0.5)' }
        />
        </MapView>