如何在本地响应中获取经度和纬度?

时间:2019-03-07 15:56:10

标签: react-native geolocation

我需要知道如何在http的本机响应中获得经度和纬度。 示例:

  

http://example.com/TEST/app.do?do=savestatus&u=user&lat=latitude&lng=longitude ...

感谢您的帮助!!

1 个答案:

答案 0 :(得分:0)

如果您要查找的是一种简单长久的方法,则可以使用RN的导航器API:

const options = { enableHighAccuracy: true };
const self = this;
navigator.geolocation.getCurrentPosition(success, error, options);
function success(pos) {
    const { latitude, longitude } = pos.coords;
    self.setState({ location: `${latitude},${longitude}`});
}

source