我使用react-native-maps集成了适用于iOS设备的Google Map。我有一个问题,在重新渲染地图后initialRegion不起作用。

我的应用程序仅包含2个组件:MapView中的react-native-mapsButton。单击按钮显示或隐藏地图。

这是我的代码:

render() {
    return (
        <View style={styles.mapContainer}>
            {this.renderMap()}
            <TouchableOpacity
                onPress={this.onButtonPress.bind(this)}
                style={styles.showMapButtonContainer}>
                <Text style={styles.showMapButtonText}>Show and Hide Map</Text>
            </TouchableOpacity>
        </View>
    );
}

renderMap() {
    if (this.state.showMap) {
        return (
            <MapView
                provider={PROVIDER_GOOGLE}
                style={styles.map}
                initialRegion={{
                    latitude: 37.78825,
                    longitude: -122.4324,
                    latitudeDelta: LATITUDE_DELTA,
                    longitudeDelta: LONGITUDE_DELTA,
                }}
                cacheEnabled={true}
                onRegionChangeComplete={this.onRegionChangeComplete.bind(this)}
            >
            </MapView>
        );
    } else {
        return <View style={styles.map}/>;
    }
}

onButtonPress() {
    this.setState({
        showMap: !this.state.showMap,
    })
}

onRegionChangeComplete(region) {
    console.log("new region", region)
}


第一次加载图,一切正常。但是,当我隐藏地图并通过单击按钮再次显示它时,它将呈现一个随机区域:

{
  longitude: 0,
  latitudeDelta: 0.0004935264587338631,
  latitude: 0,
  longitudeDelta: 0.00027760863304138184
}


我尝试cacheEnabled等于truefalse但没有帮助。如果您有任何建议,请告诉我。先感谢您!

最佳答案

首次加载页面时,它将调用initialRegion;当您隐藏显示地图时,它将不会再次调用initialRegion函数,因为之前已经加载了地图,因此您需要在hide / show方法上调用函数并设置通过以下方法

this.map.setNativeProps({ region });


要么

this.map.animateToRegion({
       latitude: this.props.latitude,
       longitude: this.props.longitude,
       longitudeDelta: LONGITUDE_DELTA ,
       latitudeDelta: LATITUDE_DELTA
}, 1)}


并且您需要按照以下方式添加add initialRegion,以便在功能中获得ref={ref => { this.map = ref; } }作为参考

         <MapView
                ref={ref => { this.map = ref; } }
                initialRegion={{
                  latitude: 37.78825,
                  longitude: -122.4324,
                  latitudeDelta: LATITUDE_DELTA,
                  longitudeDelta: LONGITUDE_DELTA,
                }}
                 onRegionChangeComplete={(region) => { **somefuncation** } }
          >

09-25 18:31