如何仅获取 latitude/longitude 世博会地点

How to grab just the latitude/longitude expo location

我正在使用 expo location 请求用户许可并获取他们的 latitude/longitude 坐标。我正在努力在 Internet 上找到一些有见地的示例,这让我可以查看他们的文档 here

使用他们提供的示例,我正在请求权限并记录一个 return 值,该值看起来像 LocationObjectCoords,您可以看到它是在允许权限后呈现的。查看文档时,特别是 getCurrentPositionAsync;它看起来像 returns LocationObject,它只是坐标和记录时间。

我如何return 明确纬度和经度 而不是 LocationObjectCoords 中包含的所有其他内容?

下面是我的代码以及 snack example 我的代码。 运行 作为 IOS.

  const [location, setLocation] = useState(null);
  const [errorMsg, setErrorMsg] = useState(null);

  useEffect(() => {
    (async () => {
      
      let { status } = await Location.requestForegroundPermissionsAsync();
      if (status !== 'granted') {
        setErrorMsg('Permission to access location was denied');
        return;
      }

      let location = await Location.getCurrentPositionAsync({});
      setLocation(location);
    })();
  }, []);

  let text = 'Waiting..';
  if (errorMsg) {
    text = errorMsg;
  } else if (location) {
    text = JSON.stringify(location);
  }

  return (
    <View style={styles.container}>
      <Text style={styles.paragraph}>{text}</Text>
    </View>
  );
}

一切都在你的location变量上,你只需要分别保存你的latitudelongitude。检查一下,工作正常:https://snack.expo.dev/SXAmeusSa

希望这对你有用