使用react native如何获取当前位置的城市名称?

时间:2018-07-17 12:46:04

标签: react-native

您好,我正在使用react native,我想获取当前位置的城市名称,有人可以帮我解决这个问题吗?我完全没有得到答复。我已经尝试过...

代码:

 componentDidMount(){
        navigator.geolocation.getCurrentPosition(
          (position) => {
            try {
                Geocoder.geocodePosition({ position.coords.latitude, position.coords.longitude }.then(res =>
                  console.log(res);
             } catch(err) {
               console.log(err);
             }
           },
           (error) => this.setState({ error: error.message }),
           { enableHighAccuracy: false, timeout: 200000, maximumAge: 1000 },
         );
  }

1 个答案:

答案 0 :(得分:0)

React Native不支持反向地理编码(从位置到管理信息)。检查以下答案:Use Geocoder to return the device address