React Native使用GeoLib计算两个坐标之间的距离

时间:2018-05-03 18:17:43

标签: reactjs react-native react-android

我有两个问题。一个是如果我使用命令react native run-android启动应用程序,我可以看到当前位置的经度和纬度。如果我重新加载屏幕,我会收到超时错误,说“&34;位置请求已超时”#34;而且我没有看到经度和纬度。下面是图片

enter image description here

我遇到的另一个问题是,当我尝试计算经度和纬度的两个坐标之间的距离时,我得到路径错误。下面是我的代码和错误的屏幕截图:

import React, { Component } from 'react';
import { View, Text, TouchableOpacity, Linking } from 'react-native';
import geolib from "geolib";

class GeolocationExample extends Component {
  constructor(props) {
    super(props);

    this.state = {
      latitude: null,
      longitude: null,
      error: null,
    };
  }



  componentDidMount() {
    navigator.geolocation.getCurrentPosition(
      (position) => {
        this.setState({
          latitude: position.coords.latitude,
          longitude: position.coords.longitude,
          error: null,
        });
      },
      (error) => this.setState({ error: error.message }),
      { enableHighAccuracy: true, timeout: 20000, maximumAge: 1000 },
    );
  }

  render() {

    let geolib = require('geo-lib');


    let result =geolib.Distance({
     p1: { lat: this.state.latitude, lon: this.state.longitude },
     p2: { lat: 33.613355, lon: -117.373261 }
 });


    return (
      <View style={{ flexGrow: 1, alignItems: 'center', justifyContent: 'center' }}>
        <Text>Latitude: {this.state.latitude}</Text>
        <Text>Longitude: {this.state.longitude}</Text>
        <Text>Distance between two points:result </Text>
        {this.state.error ? <Text>Error: {this.state.error}</Text> : null}


      </View>
    );
  }
}

export default GeolocationExample;

enter image description here

我不确定为什么会出现这个错误。

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:1)

尝试此有效的更新代码!

import {getDistance} from 'geolib';
import * as Location from "expo-location";
import * as Permissions from "expo-permissions";

export default class Locations extends Component
{
    state = {  
        destinationLat: 31.6200,
        destinationLong: 74.8765,
        distance:null,
        startLat:52.528308,
        startLong:1.3817765
    };
    async componentDidMount(){
        let location = await Location.getCurrentPositionAsync({
            enableHighAccuracy: true,
        });
        this.setState({
            startLat: location.coords.latitude,
            startLong: location.coords.longitude,
          });
        var dis = getDistance(
            {latitude: location.coords.latitude, longitude: location.coords.longitude},
            {latitude: this.state.destinationLat, longitude: this.state.destinationLong},
          );
          this.setState({
            distance: dis/1000,
          });
    };
    render(){
        return(
            <Text>{this.state.distance} KMs</Text>
        );
    }
}

答案 1 :(得分:0)

位置超时错误因某些Android API而臭名昭着。 This package旨在解决此问题。

对于您的路径问题,您从顶部没有破折号的'geolib'导入,但是在渲染方法中需要使用破折号的'geo-lib'。我会检查以确定您安装了哪一个并删除对另一个的引用。