Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/react-native/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ios 在谷歌地图中使用谷歌可拖动标记时,用户界面没有响应_Ios_React Native_React Native Android_React Native Ios - Fatal编程技术网

Ios 在谷歌地图中使用谷歌可拖动标记时,用户界面没有响应

Ios 在谷歌地图中使用谷歌可拖动标记时,用户界面没有响应,ios,react-native,react-native-android,react-native-ios,Ios,React Native,React Native Android,React Native Ios,在我的react原生iOS应用程序UI中,当我在地图(谷歌地图)中拖动标记时,没有响应。在android中,它工作得很好。是否有人有相同的问题?请帮助我。提前感谢 <Marker draggable coordinate={this.state.loc} title={"Current location"} onDragEnd={(e) => this.locCh

在我的react原生iOS应用程序UI中,当我在地图(谷歌地图)中拖动标记时,没有响应。在android中,它工作得很好。是否有人有相同的问题?请帮助我。提前感谢

            <Marker 
            draggable
            coordinate={this.state.loc}
            title={"Current location"}
            onDragEnd={(e) => this.locChange(e)}
            //description={"description"}
            />
    console.log(e.nativeEvent.coordinate)
    this.setState({ loc: e.nativeEvent.coordinate, lng: e.nativeEvent.coordinate.longitude, lat:e.nativeEvent.coordinate.latitude})

}