web-dev-qa-db-ja.com

react-native-mapsを使用して、ReactNativeで現在の位置、緯度、経度を取得します

地図の場所を開発しています。特定の場所をクリックすると、緯度と経度が表示されますが、現在の場所、緯度と経度は表示されません。

調べる方法がわかりません。

どうすればそれらを取得でき、その位置にマーカーを配置できますか?

ここに私のコードがあります:

class Maps extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      region: {
        latitude:       LATITUDE,
        longitude:      LONGITUDE,
        latitudeDelta:  LATITUDE_DELTA,
        longitudeDelta: LONGITUDE_DELTA,
      },
      marker: {
        latlng:{
          latitude:       null,
          longitude:      null,
          latitudeDelta:  LATITUDE_DELTA,
          longitudeDelta: LONGITUDE_DELTA
        }
      }
    }
  }

  componentDidMount() {
    navigator.geolocation.getCurrentPosition (
      (position) => { alert("value:" + position) },
      (error)    => { console.log(error) },
      {
        enableHighAccuracy: true,
        timeout:            20000,
        maximumAge:         10000
      }
    )
  }

  onMapPress(e) {
    alert("coordinates:" + JSON.stringify(e.nativeEvent.coordinate))
      this.setState({
        marker: [{ coordinate: e.nativeEvent.coordinate }]
      })
    }

  render() {
    return (
      <View style={styles.container}>
        <View style={{flexGrow:1}}>
          <MapView
            ref="map"
            provider={this.props.provider}
            style={styles.map}
            onPress={this.onMapPress.bind(this)}
            provider = {PROVIDER_DEFAULT}
            mapType="standard"
            zoomEnabled={true}
            pitchEnabled={true}
            showsUserLocation={true}
            followsUserLocation={true}
            showsCompass={true}
            showsBuildings={true}
            showsTraffic={true}
            showsIndoors={true}>
          </MapView>
        </View>
      </View>
    )
  }
}
18
Lavaraju

日付に[email protected]react-native-maps@^0.13.1を使用し、[email protected]react-native-maps@^0.15.2を使用して、次の手順を実行しました。

mapRegion、最後のstate、および最後のlongitudelatitudeオブジェクトをnullとして設定します。

state = {
  mapRegion: null,
  lastLat: null,
  lastLong: null,
}

次に、componentDidMount()関数内で、現在の位置の各変更を監視します。

  componentDidMount() {
    this.watchID = navigator.geolocation.watchPosition((position) => {
      ...
    });
  }

変更がある場合は、this.state.mapRegionでそれらを更新し、実際の座標とdelta値を渡します(私のものはあなたのものとは異なる可能性があるので、それらを調整します)。

  componentDidMount() {
    this.watchID = navigator.geolocation.watchPosition((position) => {
      // Create the object to update this.state.mapRegion through the onRegionChange function
      let region = {
        latitude:       position.coords.latitude,
        longitude:      position.coords.longitude,
        latitudeDelta:  0.00922*1.5,
        longitudeDelta: 0.00421*1.5
      }
      this.onRegionChange(region, region.latitude, region.longitude);
    }, (error)=>console.log(error));
  }

次に、onRegionChange()関数内の要素に新しい値を「設定」するために使用されているcomponentDidMount()関数が必要です。

  onRegionChange(region, lastLat, lastLong) {
    this.setState({
      mapRegion: region,
      // If there are no new values set the current ones
      lastLat: lastLat || this.state.lastLat,
      lastLong: lastLong || this.state.lastLong
    });
  }

componentWillUnmount()でジオロケーションをアンマウントします。

  componentWillUnmount() {
    navigator.geolocation.clearWatch(this.watchID);
  }

MapViewをレンダリングして現在のmapRegionオブジェクトを渡し、その中のMapView.Markerは、変更時に現在のlatitudelongitudeを表示するだけです。

  render() {
    return (
      <View style={{flex: 1}}>
        <MapView
          style={styles.map}
          region={this.state.mapRegion}
          showsUserLocation={true}
          followUserLocation={true}
          onRegionChange={this.onRegionChange.bind(this)}>
          <MapView.Marker
            coordinate={{
              latitude: (this.state.lastLat + 0.00050) || -36.82339,
              longitude: (this.state.lastLong + 0.00050) || -73.03569,
            }}>
            <View>
              <Text style={{color: '#000'}}>
                { this.state.lastLong } / { this.state.lastLat }
              </Text>
            </View>
          </MapView.Marker>
        </MapView>
      </View>
    );
  }

デバイスの幅と高さ全体を使用して適切にレンダリングするには、マップに StyleSheet.absoluteFillObject を追加します。

const styles = StyleSheet.create({
  map: {
    ...StyleSheet.absoluteFillObject,
  }
});

onPress()関数では、onRegionChange()と同様のことができます。これは、実際の座標を取得して設定することです。

  onMapPress(e) {
    let region = {
      latitude:       e.nativeEvent.coordinate.latitude,
      longitude:      e.nativeEvent.coordinate.longitude,
      latitudeDelta:  0.00922*1.5,
      longitudeDelta: 0.00421*1.5
    }
    this.onRegionChange(region, region.latitude, region.longitude);
  }

expo.io で完全なコードを確認します(ただし、react-native-mapsはインストールされません)

33
Sebastian Palma

ジオローカリゼーションに関するこの公式ドキュメントを読むことをお勧めします。 https://facebook.github.io/react-native/docs/geolocation.html

次に、現在の場所を使用して、その情報を自分の状態にすることができます。

navigator.geolocation.getCurrentPosition((position) => {
    this.setState({position: {longitude: position.longitude, latitude: position.latitude}});
}, (error) => {
    alert(JSON.stringify(error))
}, {
    enableHighAccuracy: true,
    timeout: 20000,
    maximumAge: 1000
});

次に、レンダリングメソッドで、マーカーを使用して最終ビューを作成できます。

render() {
  return (
    <MapView ...>
      <MapView.Marker
        coordinate={this.state.position}
        title="title"
        description="description"
      />
    </MapView>
  )
}
4

次のコードを使用して場所の許可を探します。

try {
    const granted = await PermissionsAndroid.request(
        PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION
    )
    if (granted === PermissionsAndroid.RESULTS.GRANTED) {
        alert("You can use the location")
    }
    else {
        alert("Location permission denied")
    }
}
catch (err) {
    console.warn(err)
}

次のコードを使用して、現在の場所の緯度と経度を取得します。

this.watchID = navigator.geolocation.watchPosition((position) => {
    let region = {
        latitude:       position.coords.latitude,
        longitude:      position.coords.longitude,
        latitudeDelta:  0.00922*1.5,
        longitudeDelta: 0.00421*1.5
    }
}
0
Rajneesh Shukla