react-native-baidu-map
react-native-baidu-map copied to clipboard
reverseGeoCode方法导致闪退
RN版本:0.61.2 react-native-baidu-map版本: 1.0.26
reverseGeoCode方法转换国内gps坐标时正常,转换国外坐标会闪退
以下是我导致闪退的坐标
{longitude: -122.08429116122987, latitude: 37.421585589067796}
_onMapClick(point) { Geolocation.reverseGeoCode(point.latitude, point.longitude).then(res => { this.setState({ addressList: res.poiList, addressLoading: false }) }) }